import math print "-------Welcome To The Area Of Circle Calculator Program-------" radius = input("\nPlease enter the radius: ") areaOfCircle = math.pi * radius**2 print "\nThe area of a circle with this radius is:", areaOfCircle print "\n-------End Of Program-------"