#include int main() { long H,W; std::cin >> H; std::cin >> W; if(H > W) { std::cout << "TATE" << std::endl; } else { std::cout << "YOKO" << std::endl; } return 0; }