import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Map.Entry; import java.util.Scanner; import java.util.Set; public class No00000024_Main2 { public static void main(String[] args) { Map cntMap = new HashMap() { { put("0", 0); put("1", 0); put("2", 0); put("3", 0); put("4", 0); put("5", 0); put("6", 0); put("7", 0); put("8", 0); put("9", 0); } }; Scanner scan = new Scanner(System.in); int n = Integer.parseInt(scan.nextLine()); Set noSet = new HashSet(); for(int i = 0; i < n; i++) { String[] arr = scan.nextLine().split(" "); if("YES".equals(arr[4])) { for(int j = 0; j < 4; j++) { if(!noSet.contains(arr[j]) && cntMap.containsKey(arr[j])) { cntMap.put(arr[j], cntMap.get(arr[j]) + 1); } } } else { for(int k = 0; k < 4; k++) { noSet.add(arr[k]); } } } String result = ""; int temp = -1; for(Entry entry : cntMap.entrySet()) { if(!noSet.contains(entry.getKey()) && temp < entry.getValue()) { result = entry.getKey(); temp = entry.getValue(); } } System.out.println(result); scan.close(); } }