let solve H W = if H < W then "YOKO" else "TATE" let H, W = System.Console.ReadLine().Split() |> Array.map int |> fun x -> x.[0], x.[1] System.Console.WriteLine(solve H W)