write a program to obtained. length and breadth of a rectangle and calculate its area
durgakumawat81031:
ap muze solve krke bata dijiye
b = int(input ("Enter the breadth"))
print ("The area of the rectangle is: ",l*b)
Answers
Answered by
1
Answer:
Area of a rectangle =2(l+b)
Answered by
2
l = int(input ("Enter the length"))
b = int(input ("Enter the breadth"))
print ("The area of the rectangle is: ",l*b)
Similar questions