#include using namespace std; #ifdef LOCAL #include "debug.h" #else #define DEBUG(...) #endif int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n, k; cin >> n >> k; if (n % 2 == 0) { cout << min(k + 1, n / 2) << '\n'; } else { cout << min(k + 1, n) << '\n'; } }