#include #include #include using namespace std; typedef long long int ll; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); ll h,w; cin >> h >> w; if(h*3==w*4){ cout << "TATE" << endl; } else{ cout << "YOKO" << endl; } }