#Area Of A Circle in python R = int(input("Enter the radius of the circle: ")) PI = 22/7 #This is a constant A = PI * R * R print(A)