l, k = gets.chomp!.split(' ').map(&:to_i) if l % 2*k == 0 puts l / 2 - k else puts l / 2 - (l % 2 * k ) / 2 end