My issue
Write a program for the following problem
Let’s consider a rectangle of sides 11 and 13.
Output the following on separate lines
Area of the rectangle
Perimeter of the rectangle
My code
# Update the '_' below to solve the problem
print(11 * 13) # Area of the rectangle
print("Area of the rectangle" * (11 + 13)) # Perimeter of the rectangle
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone