#include
int main()
{
int width, height, area;
width = 3.0;
height = 5.0;
area = width * height / 2.0;
printf("%lfcm² \n", area);
return 0;
}

ㅠㅠ