# Python program that calculates the area of a circle
# Formula is [pi] * [Radius^2]

import math

# Get the radius from the user
radius = input("Enter the radius of the circle: ")

# Convert string that was input to an integer
radiusofcircle = int(radius)

# Calculate the area of the circle
radiussquared = radiusofcircle**2
areaofcircle = math.pi * radiussquared

print ("The radius entered is: ", radiusofcircle)
print ("The area of the circle is: ", areaofcircle)
