Computer Science, asked by xXitzSweetMelodyXx, 4 months ago

write a program in Python to print area and perimeter of square

plzz tell me fast​

Answers

Answered by priyanujbd12345
5

Explanation:

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)

Similar questions