Computer Science, asked by Anonymous, 1 year ago

write a program to find out area of rectangle.. plz answer fast ​

Answers

Answered by pavithranatarajan855
0

Answer:

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

b=int(input("enter breadth: "))

area=l*b

print(area)

Explanation:

Similar questions