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