My issue
i dont know what to do
My code
# Solution as follows
print(11 * 13) # Area of the rectangle
print(2 * (11 + 13)) # Perimeter of the rectangle
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone
@arjun61 in this problem sides of rectangle are already given = 11 and 13
we need to find area of the rectangle and perimeter of the rectangle…
formula of area of rectangle = side * side
formula of perimeter of the rectangle = 2 *(side + side)
print(11 * 13) # Area of the rectangle
print(2 * (11 + 13)) # Perimeter of the rectangle