// yukicoder: No.521 Cheeses and a Mousetrap(チーズとネズミ捕り) // 2019.5.2 bal4u #include int main() { int N, K, ans; scanf("%d%d", &N, &K); ans = N - 2; if (K == 0 || K > N) ans = 0; else if ((N & 1) && (N+1)/2 == K) ans++; printf("%d\n", ans); return 0; }