Computer Science, asked by dilpreetsingh5211, 6 months ago

Write a single program to perform the following : i)to obtain length and breadth of a rectangle and calculate its area. ​

Answers

Answered by parkashsaxena55
0

Explanation:

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

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

a=2*(l+b)

print(a)

Similar questions