M,K=map(int,input().split()) #後手必勝の回数 B=M//(K+1) #先手必勝の回数 A=M-1-B if A%2==0: if B==0: print("Draw") else: print("Lose") else: print("Win")