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