Circumference & Area of Circle

PHOTO EMBED

Tue Aug 12 2025 02:44:08 GMT+0000 (Coordinated Universal Time)

Saved by @root1024 ##python

# Circumference of Circle
r = int(input("Enter radius of circle : "))
c = 2*3.14*r
print("Circumference of Circle is : ", c)

# Area of Circle
area = 3.14*r*r
print("Area of Circle is : ", area)
content_copyCOPY