class Application def main puts judgment( cut_received_code(get_code) ) end def judgment(value : Array) : String return value[0] >= value[1] ? "TATE" : "YOKO" end def cut_received_code(value : String) : Array value.split(" ").map(&.to_i) end def get_code : String return gets.to_s.chomp end end Application.new.main