N, K = map(int, input().split()) if K == 0 or K > N: print(0) elif K == N / 2 + 1: ptint(N - 1) else: print(N - 2)