M, K = map(int, input().split()) lose = (M - 1) // (K + 1) win = (M - 1) - lose if win % 2: print('Win') else: print('Lose' if lose else 'Draw')