// MY C PROGRAM FOR AREA OF TRIANGLE
#include <stdio.h>
int main()
{
float height, base;
printf("Enter the value of height");
scanf("%f", &height);
printf("Enter the value of base");
scanf("%f", &base);
printf("The value of area is %f", height*base/2);
return 0;
}