#include<iostream>
#include<cmath>
using namespace std;
double x, y, z, p, s;
int main() {
cout << "请输入三角形的三条边";
cin >> x >> y >> z;
double p = (x + y + z) / 2;
double k = p * (p - x)*(p - y)*(p - z);
s = sqrt(k);
cout << s;
return 0;
}
11-13
11-13