My issue
length=int(input())
width=int(input())
area=length*width
print("area of rectangle is: ",area)
My code
# Update your code below this line
length=int(input())
width=int(input())
area=length*width
print("area of rectangle is: ",area)
Learning course: CEMP: Programming in Python
Problem Link: Find the Area of any rectangle in CEMP: Programming in Python