My issue
area of rectangle formula is length*width
My code
(11*13)
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone
area of rectangle formula is length*width
(11*13)
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone
You are doing good the way you are calculating the area. The only problem is that you are not printing it. Use print(11*13) to print the ans. Good luck!