#include using namespace std; int main(){ int n;int k; cin >> n; vector types(n); int num[6]={0}; for(int types_i = 0; types_i < n; types_i++){ cin >> types[types_i]; } for(int types_i = 0;types_i < n; types_i++){ ++num[types[types_i]]; } int max=num[0]; for(int i = 1; i < 6; i++){ if(max