#include <bits/stdc++.h> using namespace std; map<int, int>times; int main() { int n, maxx = 0; cin >> n; for(int i = 0; i < n; i++){ int temp; cin >> temp; times[temp]++; maxx = max(maxx, times[temp]); } cout << mi...