#include using namespace std; int A[10], B; int main(){ cin >> A[1] >> A[2] >> A[3] >> B; int ans = ((A[1]+A[2]+A[3]+B)>3*A[3]) ? (A[1]+A[2]+A[3]+B) : (3*A[3]); cout << ans << endl; return 0; }