Help me in solving VAR10 problem

My issue

Assign side length of square

s = 10

Assign length and breadth of rectangle

l = 25
b = 17

Calculate areas of square and rectangle

areas = s * s
arear = l * b

Calculate difference in area between rectangle and square

areadiff = arear - areas

Cost of painting the square

costs = areas * 4 # Rs. 4 per cm^2

Print the results

print(“Area of the square:”, areas)
print(“Area of the rectangle:”, arear)
print(“Difference in area:”, areadiff)
print(“Cost of painting the square:”, costs)

My code

# Assign side length of square
s = 10

# Assign length and breadth of rectangle
l = 25
b = 17

# Calculate areas of square and rectangle
areas = s * s
arear = l * b

# Calculate difference in area between rectangle and square
areadiff = arear - areas

# Cost of painting the square
costs = areas * 4  # Rs. 4 per cm^2

# Print the results
print("Area of the square:", areas)
print("Area of the rectangle:", arear)
print("Difference in area:", areadiff)
print("Cost of painting the square:", costs)

Learning course: Learn Python
Problem Link: Arithmetic Operations With Variables Practice Problem in Python - CodeChef

@ritika213
the printing statement should be exactly same as this one

#Solution as follows
s = 10
areas = s*s

l = 25
b = 17
arear = l*b

#In this example, area of rectangle is higher than the area of the square
areadiff = arear - areas
costs = areas * 4

print("The area of Square is", areas )
print("The area of Rectangle is",  arear )
print("The difference of areas is", areadiff)
print("Cost of painting the Square is", costs)