use std::io::{self, BufRead}; fn get_lines() -> Vec { let stdin = io::stdin(); let lines: Vec = stdin.lock().lines().map(|l| l.unwrap()).collect(); return lines; } fn main(){ let s = &get_lines()[0]; let n: Vec = s.split(' ').map(|x| x.parse().unwrap()).collect(); let (h, w) = (n[0], n[1]); if h > w { println!("TATE"); } else { println!("YOKO"); } }