a,b,c,d = map(int,input().split()) if a == c: if b == d: print('Draw') else: if b + 1 == d or b - 2 == d: print('null') else: print('tRue') else: if a > c: print('null') else: print('tRue')