#include using namespace std; int main(){int b[5]; for(int i=0;i<5;i++) { b[i]=0; } int n; cin >> n; vector types(n); for(int types_i = 0; types_i < n; types_i++){ cin >> types[types_i]; if(types[types_i]==1) {b[0]++;} if(types[types_i]==2) {b[1]++;} if(types[types_i]==3) {b[2]++;} if(types[types_i]==4) {b[3]++;} if(types[types_i]==5) {b[4]++;} } int max=b[0]; int t=0; for(int i=0;i<5;i++) { if(max