#include using namespace std; int main() { long long a, b; cin >> a >> b; if (a < b) { cout << b - 2; } else { cout << 2000000000 - b - 1; } }