length=int(input()) width=int(input()) f=length*2+width*2 print(int(f/2)) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

length=int(input()) width=int(input()) f=length*2+width*2 print(int(f/2))

Solution of guard flamingo

30th Nov 2022, 5:47 AM
Susheela
Susheela - avatar
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)
30th Nov 2022, 5:57 AM
Anonymous
Anonymous - avatar