#include using namespace std; #define rep(i, n) for (int i = 0; i < (n); i++) typedef long long ll; typedef pair pii; typedef vector vll; typedef vector vi; typedef vector> vvi; typedef vector> vvll; const ll inf = 1e16; const ll md = 1000000007; bool ok(int a,int b,int c){ if(a==b||b==c||c==a) return false; if(ab&&b>c) return false; return true; } int main() { int n,ans=0; vi cnt(7,0); cin>>n; rep(i,n){ int l; cin>>l; cnt[l]++; } rep(i,7) if(cnt[i]>=ans) ans=cnt[i]; cout<