How many squares for 6 people who want 6 quilts of 6x6 squares?

You are multiplying 6 by itself, a total of four times. It is expressed by (6 ** 4)

ally need help with this one. I can not move on as it is saying I do not have it correct - I’ve tired everything can someone please help

Only print what has been specified in the instructions. Nothing extra.

For Example,

# Instead of: 
print("6*6 quilt has", 6**2, "squares")

# Change to:
print(6**2)

thank you so much. A

<h1>Solution</h1>
print((6**2) * 36)