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