#define _CRT_SECURE_NO_WARNINGS #include int main(void) { int H, W; scanf("%d%d", &H, &W); if (H < W) puts("YOKO"); else puts("TATE"); return 0; }