#line 1 "main.cpp" #include using namespace std; using lint = long long; void solve() { lint a, b, n, m; cin >> a >> b >> n >> m; if (a < b) { swap(a, b); swap(n, m); } // a >= b // a < bにならないギリギリの操作回数 auto ope = (a - b) / (n + 1); cout << b + ope << "\n"; } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); solve(); return 0; }