0
length=int(input()) width=int(input()) f=length*2+width*2 print(int(f/2))
Solution of guard flamingo
1 Answer
0
length=int(input("Length : "))
width=int(input("Width : "))
area=length*width
perimeter=2*(length+width)
print("Area of Rectangle : ",area)
print("Perimeter of Rectangle : ",perimeter)