A, B, X, Y = map(int, input().split()) ans = 0 if A * Y / B <= X: ans = Y + (A * Y) / B else: ans = max(ans, X + (B * X) / A) print(ans)