m, k = map(int, input().split()) x = (m-1)//(k+1) y = (m-1)-x if y%2 == 0: first = y//2 second = y//2+x else: first = (y+1)//2+x second = y//2 if first > second: print('Win') elif first < second: print('Lose') else: print('Draw')