// yukicoder: No.427 テレビ // 2019.4.16 bal4u #include int main() { int H, W; scanf("%d%d", &H, &W); puts(H > W? "TATE": "YOKO"); return 0; }