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