Skip to content

Commit 8b55dea

Browse files
authored
area_of_rectangle
to find area of rectangle
1 parent 99cf7d7 commit 8b55dea

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

area_of_rectangle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#here we find the area of a rectangle
2+
l=int(input("enter the length of rectangle:"))
3+
b=int(input("enter the breath of rectangle:"))
4+
area=l*b
5+
print(f"area of rectangle is:{area}")

0 commit comments

Comments
 (0)