#include #define rep(i, ss, ee) for (int i = ss; i < ee; ++i) using namespace std; auto solve() { int H, W; cin >> H >> W; string ans = "TATE"; if (H < W) ans = "YOKO"; return ans; } int main() { cin.tie(0); ios::sync_with_stdio(false); cout << solve() << endl; getchar(); }