Help me in solving PYTH09 problem

My issue

Area of the peremeter

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

Hi @shrikrishnamis

Formula For Perimeter is
2*( x + y )

you need to write for perimeter is

print(2*(x + y))

x and y are the values given to you.