Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
vivekkrsk authored Jan 10, 2022
1 parent 532d04f commit 20587b9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions compute_area.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Compute the area of circle
radius = input("Enter the radius of circle: ")
radius = int(radius)
area = radius*radius*22/7
print(area)

0 comments on commit 20587b9

Please sign in to comment.