Computer Science, asked by Vanella5027, 9 hours ago

Now create a program in python to find the perimeter of this rectangle (perimeter =2×(length +breadth

Answers

Answered by richitha77
3

l=int(input())

b=int(input())

perimeter =2*(l+b)

print("perimeter of the rectangle is:",perimeter)

Similar questions