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