#include using namespace std; #define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; template using V=vector; template using VV=V>; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); double a,b,c; cin>>a>>b>>c; double t=a+b+c,s=t/2;; double ans=2*sqrt(s*(s-a)*(s-b)*(s-c))/t; printf("%.15f\n",ans); return 0; }