import java.util.Scanner; class Main { public static void main(String[] args) throws Exception { Scanner in = new Scanner(System.in); int n = in.nextInt(); int max = -1; int maxIndex = 0; int[] count = new int[6]; for(int i=0; i= max) { max = count[i]; maxIndex = i+1; } } System.out.println(maxIndex); } }