# write a proagram area of circle


radius=float(input("Enter the radius= "))
area=3.14*radius*radius
print("area of "+str(area))



output:

Enter the radius= 6
area of 113.03999999999999

Comments

Popular posts from this blog

# Write a program to demonstrate relational operator

# write a program to perform airthmatics operation