Help me in solving PYTH09 problem

My issue

Area of the rectangle

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

My code

# Update the '_' below to solve the problem

print(11 * 13)          # Area of the rectangle

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

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

@rakhijha287
The formula of perimeter of the rectangle is 2*(l+b)

print(1113)
print(2
(11+13)) #2 * (l + b)