Computer Science, asked by singhtanmay2606, 3 months ago

write a python program to calculate Area and Perimeter of rectangle .

Answers

Answered by rudh2345
18

Answer:

l=int(input("Length : "))

w=int(input("Width : "))

area=l*w.

perimeter=2*(l+w)

print("Area of Rectangle : ",area)

print("Perimeter of Rectangle : ",perimeter)

Explanation:

Similar questions