Help me in solving PYTH23 problem

My issue

My code

# Update the code below this line to solve the problem
width=45
height=76 
area=width*height  
print("Area of rectangle="+str(area))  

Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone

  1. width=5
  2. height=10
  3. area=width*height
  4. print(“Area of rectangle=”+str(area))