process.stdin.resume(); process.stdin.setEncoding('ascii'); var input_stdin = ""; var input_stdin_array = ""; var input_currentline = 0; process.stdin.on('data', function (data) { input_stdin += data; }); process.stdin.on('end', function () { input_stdin_array = input_stdin.split("\n"); main(); }); function readLine() { return input_stdin_array[input_currentline++]; } /////////////// ignore above this line //////////////////// function main() { var n = parseInt(readLine()); types = readLine().split(' '); types = types.map(Number); const counts = types.reduce((prev, next) => { let newObj = Object.assign({}, prev); if (prev[next]) { newObj[next] = prev[next] + 1; } else { newObj[next] = 1; } return newObj; }, {}); let highest = 0; let winningKey; for (key in counts) { if (counts[key] > highest) { highest = counts[key]; winningKey = key; } } console.log(winningKey) }