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