#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) std::cout << ay - ax * ((ay - by) / (ax + bx)) << std::endl; else std::cout << (ay + by) / 2 << std::endl; return 0; }