using System; using System.Collections.Generic; public class Program { static void Main() { string TV = Console.ReadLine(); int i = 0; string H_ = ""; string W_ = ""; while(TV.Substring(i, 1) != " ") { H_ = H_ + TV.Substring(i,1); i++; } W_ = TV.Substring(i+1); int H = Convert.ToInt32(H_); int W = Convert.ToInt32(W_); if (H > W) { Console.WriteLine("TATE"); } else { Console.WriteLine("YOKO"); } } }