import java.util.HashMap; import java.util.Map; import java.util.Map.Entry; import java.util.Scanner; public class No00000024_Main2 { public static void main(String[] args) { Map cntMap = new HashMap(); Scanner scan = new Scanner(System.in); int n = Integer.parseInt(scan.nextLine()); 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(cntMap.containsKey(arr[j])) { cntMap.put(arr[j], cntMap.get(arr[j]) + 1); } else { cntMap.put(arr[j], 1); } } } else { for(int k = 0; k < 4; k++) { cntMap.remove(arr[k]); } } } String result = ""; int temp = -1; for(Entry entry : cntMap.entrySet()) { if(temp < entry.getValue()) { result = entry.getKey(); temp = entry.getValue(); } } System.out.println(result); scan.close(); } }