#include using namespace std; /////////////////// メイン /////////////////// int main () { //////////////////// 入力 //////////////////// int h, w; cin >> h >> w; //////////////// 出力変数定義 //////////////// string result = "TATE"; //////////////////// 処理 //////////////////// if (h*4==w*3) result = "YOKO"; //////////////////// 出力 //////////////////// cout << result << endl; //////////////////// 終了 //////////////////// return 0; }