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