using System; namespace yukicoder { class Program { static void Main(string[] args) { string[] str = Console.ReadLine().Split(' '); int[] a = new int[2]; for (int i = 0; i < 2; i++) { int A = int.Parse(str[i]); a[i] = A; } //0が縦 1が横 if(a[0]>a[1]) { Console.WriteLine("TATE"); } else { Console.WriteLine("YOKO"); } } } }