r = int(input("Enter value for radius in cm: "))
area = 3.14 * r *r
print("The area of the circle is", area, "cm^2")