Computer Science, asked by rohan5685, 2 days ago

Write a Program) to Enter length and breadth of rectangle room and display the result of its Area and perimeter. [hint: A = L x B ; p= 2(L+B)]

Answers

Answered by GAssitant
4

Answer:

l = int(input("Enter a length"))

b = int(input("Enter a breadth "))

print(f"The area is {l*b}" and the perimeter is {2*(l+b)})

Explanation:

Answers in Python

Similar questions