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