#include using namespace std; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); unsigned short A, B, O, W; cin >> A >> B >> O >> W; cout << O + max(A, B) + W << '\n'; return 0; }