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