#include using namespace std; typedef long long ll; typedef pair P; #define REP(i,n) for(ll i=0;i> A >> B >> C; double s=(A+B+C)/2; double R=sqrt((s-A)*(s-B)*(s-C)/s); cout << fixed << setprecision(12) << R << endl; return 0; }