L,R,A,B = map(int,input().split()) ans = 0 if A == 0: ans = B if A > 0: ans = A * R + B else: ans = A * L + B print(ans)