import java.util.HashMap; import java.util.Map; import java.util.Scanner; public class Main { public static void main(String[] args) { Map map = new HashMap<>(); for (int i = 0; i < 10; i++) { map.put(i, 0); } Scanner sc = new Scanner(System.in); String str = sc.nextLine(); int n = Integer.parseInt(str); for (int i = 0; i < n; i++) { String[] strs = sc.nextLine().split(" "); int a[] = new int[4]; for (int j = 0; j < a.length; j++) { a[j] = Integer.parseInt(strs[j]); } String r = strs[4]; if (r.equals("NO")) { for (int j = 0; j < a.length; j++) { if (map.containsKey(a[j])) { map.remove(a[j]); } } } else { for (int j = 0; j < a.length; j++) { if (map.containsKey(a[j])) { map.put(a[j], map.get(a[j]) + 1); } } } } int maxCnt = -1; int maxNo = -1; for (Map.Entry e : map.entrySet()) { if (e.getValue() > maxCnt) { maxCnt = e.getValue(); maxNo = e.getKey(); } } System.out.println(maxNo); sc.close(); } }