using System;
class Program
{
static float PentagonArea(float side, float apothem) {
return 5.0f * (side * apothem) / 2.0f;
}
static void Main()
{
float side = 5.0f;
float apothem = 3.0f;
float area = PentagonArea(side, apothem);
Console.WriteLine($"Area = {area:F2}");
}
}
/*
run:
Area = 37.50
*/