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