#include void solve() { int h, w; std::cin >> h >> w; std::cout << (h > w ? "TATE" : "YOKO") << std::endl; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }