#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include #include namespace mp = boost::multiprecision; using Bint = mp::cpp_int; using Real = mp::number>; #include using namespace std; const Real EPS=1e-20; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); Real a,b,c; cin>>a>>b>>c; for(Real x=1;xb+c-EPS) continue; Real e,f; e=sqrt((a+y)*(a+y)+c*c-(a+y)*(c*c+(x+y+a)*(x+y+a)-b*b)/(x+y+a)); f=sqrt((a+x)*(a+x)+b*b-(a+x)*(b*b+(x+y+a)*(x+y+a)-c*c)/(x+y+a)); if(abs(c*f*(b*b+e*e-x*x)-b*e*(c*c+f*f-y*y))