inputs = gets.split(" ") l = inputs[0].to_i k = inputs[1].to_i sum = 0 while l-2*k > 0 do sum += k l -= 2*k end puts sum