/*==========================================================================*/ /* auther: Dev1ce created: 09.04.2024 18:38:35 */ /*--------------------------------------------------------------------------*/ #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int a, b, o, w; cin >> a >> b >> o >> w; int ans = 0; ans = max(o + a + w, o + b + w); cout << ans << '\n'; return 0; }