def main(): a, b, c, d = map(int, input().split()) def f(): if a != c: return 1 if a < c else -1 return (b-d+1) % 3-1 print(['Draw', 'tRue', 'null'][f()]) if __name__ == '__main__': main()