using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; class Magatro { static void Main() { float[] a = Console.ReadLine().Split(' ').Select(s => float.Parse(s)).ToArray(); if (a[0] < a[1]) { Console.WriteLine("YOKO"); } else { Console.WriteLine("TATE"); } } }