Help me in solving PYTH58 problem

My issue

I need an answer

My code

#from the console and initialize length and width
length = int(input("Enter the length of the rectangle: "))
width = int(input("Enter the width of the rectangle: "))

# Create another integer variable area and compute the area of the rectangle
area = length * width

# Output area to the console
print("The area of the rectangle is:", area)
This script will prompt the user to enter the length and width of the rectangle, calculate the area, and then print the result.



By sending a message, you agree to o Update your code below this line
length=10
width=23
print(10*23)

Learning course: Python Programming
Problem Link: Find the Area of any rectangle Practice Problem in Python Programming - CodeChef

230