a1, a2, a3, b = map(int, input().split()) ans = max(a3 * 3, sum([a1, a2, a3, b])) print(ans)