Help me in solving PYTH32 problem

My issue

How to solve area of square 14cm

My code

# Update your code below this line
s="store the lenth of side the square"
area="store the area of square"
Cost="store the cost of the painting"
print(area,cost)

Learning course: Python Programming
Problem Link: Cost of painting Practice Problem in Python Programming - CodeChef

@ciety23ece088

Here is Solution

s = 14 
area = s * s 
cost = area * 7 

print(area)
print(cost)