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