// #define _GLIBCXX_DEBUG #include using namespace std; #include using namespace atcoder; using ll = long long; #define rep(i,n) for (ll i = 0; i < (n); ++i) using vl = vector; using vvl = vector; using P = pair; #define pb push_back #define int long long #define double long double #define INF (ll) 3e18 // Ctrl + Shift + B コンパイル // Ctrl + C 中断 // ./m 実行 signed main(){ int a, b, c, d; cin >> a >> b >> c >> d; int ans = 0; ans = max(ans, a*3); ans = max(ans, b*3); ans = max(ans, c*3); ans = max(ans, a+b+c+d); cout << ans << endl; }