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