// No.333 門松列を数え上げ // https://yukicoder.me/problems/no/333 // #include using namespace std; int solve(int A, int B); int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); int A, B; cin >> A >> B; int ans = solve(A, B); cout << ans << endl; } int solve(int A, int B) { if (A == B) return 0; if (A < B) return (A - 1) + (B - A - 1); if (A > B) return (2000000000 - A) + (A - B - 1); }