#include int main() { int h, w; std::cin >> h >> w; if(h > w) { std::cout << "TATE" << std::endl; } else { std::cout << "YOKO" << std::endl; } }