m,k=map(int,input().split()) b=(m-1)//(k+1) a=m-1-b w=(a+1)//2+b if a&1 else a//2 if w*2==m-1: print('Draw') else: print('Win' if w*2>=m else 'Lose')