A=list(map(int,input().split())) XOR=0 for a in A: XOR^=a%4 if XOR==0: print("Jiro") else: print("Taro")