package no427; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long h = sc.nextLong(); long w = sc.nextLong(); if (h * 3 == w * 4) { System.out.println("TATE"); }else{ System.out.println("YOKO"); } } }