Find the area of a triangle .

//Find the area of a triangle .
#include<stdio.h>
void main()
{
float area,x,y;
printf("Please enter the value of heigh and lenth with space :\n");
scanf("%f %f", &x,&y);
area=(x*y)*(0.5);
printf("Area=%.2f",area);
}