#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
const int N = 100010;
int n;
int a[N];
int main(){
cin.tie(0);
ios::sync_with_stdio(false);
cin >> n;
for(int i = 0; i < n; i++) cin >> a[i];
sort(a, a + n);
int res = n;
for(int i = 0, j = 0; i < n; i++){
if(a[i] > a[j]){
j ++;
res --;
}
}
cout << res << endl;
}