n, k = map(int, input().split()) if n % 2 == 0: n //= 2 print(min(n, k + 1))