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 t = [0, 2, 1][f] print(ans[t])