#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]; } unsigned long int count[5]; for (int i=0;i<5;i++) count[i]=0; for (int i=0; i max) { max=count[i]; index = i+1; } } cout << index; return 0; }