# Prompt the user to enter a radius radius = eval(input("Enter a number for radius: ")) # Compute area area = radius * radius * 3.14159 # Display results print("The area for the circle of radius", radius, "is", area)