#include #include #include #include #include #include #include int main(){ int n; scanf("%d",&n); int *types = malloc(sizeof(int) * n); for(int types_i = 0; types_i < n; types_i++){ scanf("%d",&types[types_i]); } int c[5] = {0}; for (int i=0; imax){ max = c[i]; maxi = i; } } printf("%d\n", maxi+1); // your code goes here return 0; }