Help me in solving PYTH09 problem

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

My code

# Update the '_' below to solve the problem

print(11 * 13)          # Area of the rectangle

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

My issue

Update the ‘_’ below to solve the problem

print(11 * 13) # Area of the rectangle

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

print(11*13) # Area of the rectangle

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

print(11 * 13) # Area of the rectangle

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