Help me in solving PYTH09 problem

My issue

Write a program for the following problem

Let’s consider a rectangle of sides 11 and 13.
Output the following on separate lines
Area of the rectangle
Perimeter of the rectangle

My code

# Update the '_' below to solve the problem

print(11 * 13)          # Area of the rectangle

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


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

@olimovfira
don’t print any extra statements.
just do it simply like this.

# Solution as follows

print(11 * 13)          # Area of the rectangle

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

print(11 * 13)

print(2 * (11 + 13))
don’t do anything else just respace the underscore