#include #include using namespace std; int main() { int h; int w; cin >> h; cin >> w; if(h > w){ cout << "TATE" << endl; } else { cout << "YOKO" << endl; } return 0; }