#include //cin, cout #include //vector #include //sort,min,max,count #include //string,getline, to_string #include //abs(int) #include //swap, pair #include //deque #include //INT_MAX #include //bitset using namespace std; int main() { int h, w; cin >> h >> w; if (h > w) { cout << "TATE" << endl; } else { cout << "YOKO" << endl; } return 0; }