#include using namespace std; int main(){ int n,x; int c1=0; int c2=0; int c3=0; int c4=0; int c5=0; int max=0; cin >> n; vector types(n); for(int types_i = 0; types_i < n; types_i++){ cin >> types[types_i]; if(types[types_i]==1){ c1=c1+1; } if(types[types_i]==2){ c2=c2+1; } if(types[types_i]==3){ c3=c3+1; } if(types[types_i]==4){ c4=c4+1; } if(types[types_i]==5){ c5=c5+1; } } int num[]={c1,c2,c3,c4,c5}; for(int i=0;i<5;i++){ if(num[i]>max){ max=num[i]; x=i; } } cout<