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