line = gets.chomp.split(" ") box_num = line[0].to_i out_num = line[1].to_i if box_num.even? && box_num >= out_num && out_num != 0 puts box_num - 2 elsif box_num >= out_num && out_num != 0 center_num = box_num / 2 + 1 if out_num == center_num puts box_num - 1 else puts box_num - 2 end else puts 0 end