Help me in solving PYTH23 problem

My issue

Traceback (most recent call last):
File “/mnt/sol.py”, line 8, in
print(“The Area of the givem rectagle is”+ area)
TypeError: can only concatenate str (not “int”) to str

how to fix this?

My code

# Update the code below this line to solve the problem

length =45
width=76

area= length * width

print("The Area of the givem rectagle is"+ area)

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

@kavita12915
Actually indentation do matters in python so u have to take care of extra spaces as well.

length=76
width=45
area=length*width
print("The Area of the given rectangle is ",area)