#include using namespace std; int main(int argc, const char* argv[]) { uint64_t H, W; cin >> H >> W; if (H > W) { cout << "TATE" << endl; } else { cout << "YOKO" << endl; } return 0; }