let input:[Int] = readLine()!.split(separator: " ").map{Int($0)!} let output = input[0] >= input[1] ? "TATE" : "YOKO" print(output)