#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef int itn;
const int N = 1e5 + 6;
int n, x, dp[N], ans;
int main(){
ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
cin >> n;
while(n--){
cin >> x;
ans = max(ans, ++dp[x]);
}
cout << ans << '\n';
return 0;
}
求调!!!
95分