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
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