#include #include #include #include #include using namespace std; int main() { /* Enter your code here. Read input from STDIN. Print output to STDOUT */ int n; cin>>n; vector v(n); for(int i=0; i>v[i]; sort(v.begin(),v.end()); int max = 0; int cur = v[0]; int ct = 1; for(int i=1; imax) max = ct; ct = 1; cur = v[i]; } } if(ct > max) max = ct; cout<