M,K=map(int,input().split()) ALL=M-1 LOSE=(M-1)//(K+1) WIN=ALL-LOSE if WIN%2==0: if LOSE==0: print("Draw") else: print("Lose") else: print("Win")