M,K=map(int,input().split())

#後手必勝の回数
B=M//(K+1)

#先手必勝の回数
A=M-1-B

if A%2:
    print("Win")
else:
    if B%2:
        print("Lose")
    else:
        print("Draw")