a,b,c,d=map(int,input().split()) x=a+b+c+d y=max(a,b,c)*3 if x>=y: print(x) else: print(y)