Help me in solving PYTH09 problem

My issue

My code

# Update the '_' below to solve the problem

print(__ * __)          # Area of the rectangle

_____(_ * (__ + __))    # Perimeter of the rectangle

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

Given data, Length = 11 and Breadth = 13
The formula for

  1. Area of Rectangle = length * breadth
  2. Perimeter of Rectangle = 2 * (Length + Breadth)

Solution code :-

print(11 * 13)          # Area of the rectangle

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