using System; namespace yukicoder { class Program { static void Main(string[] args) { int a = int.Parse(Console.ReadLine()); int[] n = new int[10]; int b = 0; int ans = 0; for (int i = 0; i < a; i++)//入力 { string[] s = Console.ReadLine().Split(' '); for (int x = 0; x < a; x++) { b = int.Parse(s[x]); for (int z = 0; z < 10; z++) { if (s[4] == "NO") { if (b == z) { n[z] += -1; } } else { n[z] += 1; } } } } for (int s = 0; s < 10; s++) { for (int t = 0; t < 10; t++) { if (n[s] < n[t]) { ans = t; } } } Console.WriteLine(ans); } } }