import java.io.*; import java.util.*; public class Solution { public static void main(String[] args) { Scanner in = new Scanner(System.in); int n = in.nextInt(); int[] types = new int[n]; // your code goes here int[] frequency = new int[5]; int holder = 0, h_index = 0; for(int types_i=0; types_i < n; types_i++){ types[types_i] = in.nextInt(); frequency[types[types_i] - 1]++; } for(int i = 4; i > -1; i--){ if(holder <= frequency[i]){ holder = frequency[i]; h_index = i + 1; } } System.out.println(h_index); } }