#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N, K; cin >> N >> K; if (N % 2 == 0) { cout << min(N / 2, K + 1) << '\n'; } else { cout << min(N, K + 1) << '\n'; } return 0; }