#include #define LL long long #define ULL unsigned long long #define REP(i,n) for(int i=0; i<(n); i++) #define REP2(i,x,n) for(int i=x; i<(n); i++) using namespace std; int main() { cin.tie(0); ios::sync_with_stdio(false); int N; cin >> N; int L; map mp; while( cin>>L ) { mp[L]++; } int maxFst{}, maxSec{}; for( auto x : mp ) { if( maxSec <= x.second ) { maxFst = x.first; maxSec = x.second; } } cout << maxFst << endl; return 0; }