#include using namespace std; int main(){ int n,max = 0,index = 0; cin >> n; vector types(n); for(int types_i = 0; types_i < n; types_i++){ cin >> types[types_i]; } int arr[5] = {0}; for(int i=0; i=0; i--) { if(max <= arr[i]) { max = arr[i]; index = i; } } cout<