N, K = gets.split.map &:to_i if K == 0 || K > N puts 0 elsif N % 2 == 1 && K == (N.to_f/2).round puts(N - 1) else puts(N - 2) end