N, K = [int(i) for i in input().split()] if N == K: print("Drew") elif N == K - 1 or N == K + 2: print("Won") else: print("Lost")