#include #include using namespace std; int main(){ int h,w; cin >> h >> w; if(h > w){ printf("TATE"); } else{ printf("YOKO"); } return 0; }