public static decimal CalculateArea(decimal height, decimal width)
{
	return height * width;
}