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