#include using namespace std; int main(){ int n; cin >> n; vector types(n); for(int types_i = 0; types_i < n; types_i++){ cin >> types[types_i]; } // your code goes here int max=0,count=0; int c=5; int ans; while(c>0){ count =0; for(int i=0;i=max){ max=count; ans=c; } c--; } cout << ans; return 0; }