Ring Area
Write two functions:
circle_area(radius)
that returns the area of a circle with the specified radius.ring_area(inner_radius, width)
that return the area of the ring with the specified radius and width. This function should call thecircle_area
function. The following image illustrates the inner radius and width of a ring.