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