#include using namespace std; #ifdef LOCAL #include "settings/debug.cpp" #define _GLIBCXX_DEBUG #else #define Debug(...) void(0) #endif #define rep(i, n) for (int i = 0; i < (n); ++i) using ll = long long; using ull = unsigned long long; int main() { int n; cin >> n; vector a(n); rep(i, n) cin >> a[i]; vector cand(6, 0); rep(i, n) cand[a[i] - 1]++; int maxim = *max_element(cand.begin(), cand.end()); int ans = 0; rep(i, 6) if (cand[i] == maxim) ans = i; cout << ans + 1 << endl; return 0; }