Help me in solving PYTH09 problem

My issue

My code

# Update the '_' below to solve the problem

print(11 * 13)          # Area of the rectangle

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

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

@marimaha201
In the following problem, we need to print area and the perimeter of a rectangle.

For a rectangle;

  • Area= length * breadth
  • Perimeter= 2 * ( length + breadth)

In your code it should have been;

print(2 * (11 + 13)) // *2* instead of *11*