M,K=map(int,input().split()) M-=1 Y=M//K X=M-X P=['Draw','Win','Win','Lose','Lose'] Z=min(X,Y) X-=Z Y-=Z if X: print(P[X&1]) else: print(P[-(Y&1)])