diff --git a/AreaOfCircle.py b/AreaOfCircle.py index cdbf0ed..f74f740 100644 --- a/AreaOfCircle.py +++ b/AreaOfCircle.py @@ -1,3 +1,3 @@ r=int(input("Enter radius of circle :")) -a=3.14*r*r -print(f"Area of Circle is {str(a)}") \ No newline at end of file +a=3.14*(r**2) +print("area of the circle:", a)