#include using namespace std; int main(){ long long a,b,o,w; cin >> a >> b >> o >> w; cout << a+b+o+w-min(a,b); return 0; }