A,B,C,D=map(int,input().split()) if A>C: print("null") elif C>A: print("tRue") else: if B==C: print("Draw") elif (B-C)%3==1: print("tRue") else: print("null")