#include #include int main(){ std::cin.tie(0); std::ios::sync_with_stdio(false); double ax, ay, bx, by; std::cin >> ax >> ay >> bx >> by; if(ax != bx) printf("%.10f\n", ay - ax * ((ay - by) / (ax + bx))); else printf("%.10f\n", (ay + by) / 2); return 0; }