#include<stdio.h>
#include<math.h>
int main()
{
int a,b,c;
float d,e,p;
scanf("%d%d%d",&a,&b,&c);
d=a+b+c;
p=d/2;
e=sqrt(p*(p-a)*(p-b)*(p-c));//sqrt表示开平方。
printf("circumference=%.2f area=%.2f",d,e);
return 0;
}
//用了个海伦公式算面积
#include<stdio.h>
#include<math.h>
int main()
{
int a,b,c;
float d,e,p;
scanf("%d%d%d",&a,&b,&c);
d=a+b+c;
p=d/2;
e=sqrt(p*(p-a)*(p-b)*(p-c));//sqrt表示开平方。
printf("circumference=%.2f area=%.2f",d,e);
return 0;
}
//用了个海伦公式算面积