N, K = map(int, input().split(" ")) if (N,K ) in ((2, 0), (0, 1), (1, 2)): print("Won") elif N == K: print("Drew") else: print("Lost")