A,B,C,D = map(int,input().split()) if A < C: print('null') elif A == C: if B == D: print('Draw') elif B == 0 and D == 1 or B == 1 and D == 2 or B == 2 and D == 0: print('null') else: print('tRue') else: print('tRue')