Source code -
radius = int(input("Enter the radius:"))
pie = 22/7
area = pie * radius * radius
print("The area of the circle is",area)