xa, ya = map(int, input().split()) xb, yb = map(int, input().split()) ans = (yb * xa + ya * xb) / (xa + xb) print(ans)