Help me in solving PYTH09 problem

My issue

help ths solution

My code

# Update the '_' below to solve the problem

print(11 * 19)          # Area of the rectangle

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

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

@pone004
perimeter of rectangle 2*(l+b)

Hi @pone004
perimeter of a rectangle is 2*(l+b) , so print it as print(2*(11+19))