Computer Science, asked by aaniminita, 3 months ago

Write an algorithm to input length and breadth of a rectangle and print its area.
(Best answer will be marked as brainlist)

Answers

Answered by shehrinda
1

Answer:

l=int(input("enter the length. "))

b=int(input("enter the breath. "))

print(l)

print(b)

a=l*b

print(a)

Similar questions