ques 5 finding the length and breadth

PHOTO EMBED

Mon May 04 2026 11:31:14 GMT+0000 (Coordinated Universal Time)

Saved by @abhishek2010

length = float(input("Enter length of the rectangle : "))
breadth= float(input("Enter bradth of the rectangle : "))
area = length + breadth
print("Rectangle specifications ")
print("Length = ", length, end = '')
print("breadth = ",breadth)
print("Area = ", area)
content_copyCOPY