#include<stdio.h>

void main()

{
    float base,height,area;
    printf("enter the value of base and height:> ");
    scanf("%f %f",&base,&height);
    area=0.5*base*height;
    printf("\narea=%f",area);
}