a,b,c,d=map(int,input().split()) if 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') elif a>c: print('null') else: print('tRue')