a, b, c, d = map(int, input().split()) ans = ["Draw", "null", "tRue"] if a > c: t = 1 elif c > a: t = 2 elif b == d: t = 0 elif b - d == -1 or b - d == 2: t = 1 else: t = 2 print(ans[t])