m, k = map(int, input().split()) a = (m-1) // (k+1) b = m - a - 1 if b % 2 == 0: if a == 0: print("Draw") else: print("Lose") else: print("Win")