Help me in solving PYTH09 problem

My issue

perimeter of the ractangle

My code

# Update the '_' below to solve the problem

print(11 * 13)          # Area of the rectangle

print(1/2 * (11 + 13))    # Perimeter of the rectangle

Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone

@leelhimanshu51
perimeter of rectangle is 2*(l+b).

Hi @leelhimanshu51
perimeter of rectangle is - 2*(length + breadth)
Code-