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