#include using namespace std; #define ALL(x) x.begin(),x.end() #define rep(i,n) for(int i=0;i<(n);i++) #define debug(v) cout<<#v<<":";for(auto x:v){cout<bool chmax(T &a,const T &b){if(abool chmin(T &a,const T &b){if(b f(double a,double b,double c,double d){ double A=2,B=a-c,C=b-d; double x1=(-B+sqrt(B*B-4*A*C))/(2.0*A); double x2=(-B-sqrt(B*B-4*A*C))/(2.0*A); return make_pair(x1,x2); } double EPS=0.000000000000001; signed main(){ cin.tie(0); ios::sync_with_stdio(0); cout<>a>>b>>c>>d; ll D=(a-c)*(a-c)-8*(b-d); if(D<0){ cout<<"No"<