#include using namespace std; int main(){ int n; int max=0; cin >> n; vector types(n); vector number(5); //take input from the user for(int types_i = 0; types_i < n; types_i++){ cin >> types[types_i]; } //initialize the counting array to zero for(int i=0;i<5;i++){ number[i]=0; } //increment the corresponding type for(int i=0;imax){ max=number[i]; } } for(int i=0;i<5;i++){ if(number[i]==max){ cout<