#17482: _c++


s710720@whsh.tc.edu.tw (楊佳欣)

學校 : 國立文華高級中學
編號 : 91412
來源 : [61.216.106.6]
最後登入時間 :
2019-05-21 15:59:27

#include <iostream>
#include <cmath>
using namespace std;

int main(){
int x=0,y=0,z=0,s=0;
while(cin>>x>>y>>z){
int s;
s=(x+y+z)/2;
cout << s*(s-x)*(s-y)*(s-z) << endl;
}
}