#include #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int A1, A2, A3, B; cin >> A1 >> A2 >> A3 >> B; cout << max(A3 * 3, A1 + A2 + A3 + B) << endl; return 0; }