Help me in solving PYTH23 problem

My issue

My code

# Update the code below this line to solve the problem
length = 45
width = 76
area = (length*width)
text = "The Area of the given rectangle is :"
print(text+str(area))


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

length = 45
width = 76
area = (length*width)
text = “The Area of the given rectangle is :”
print(text,area)