#include using namespace std; typedef long long ll; typedef vector vi; typedef vector vl; typedef complex P; typedef pair pii; #define REP(i,n) for(ll i=0;i> x >> y; a = P(x,y); cin >> x >> y; b = P(-x,y); P v = b-a; v /= v.real(); v *= b.real(); cout.precision(20); cout << fixed << (b.imag()-v.imag()) << endl; return 0; }