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