Computer Science, asked by radhadwivedi7001, 2 days ago

To calculate the area of rectangle after inputting the length and breadth of algorithms

Answers

Answered by samarthkrv
0

Answer:

length = float(input("Enter the length:"))

breadth = float(input("Enter the breadth:"))

area = length * breadth

print("The area is " , area)

Explanation:

Similar questions