package geometry

func Perimeter(sides int, length float64) float64 {
	return float64(sides) * length
}

func Area(width float64, height float64) float64 {
	return width * height
}
