Here's the solution: python def square(n): return n * n The function takes one parameter n.
It multiplies n by itself and returns the result. python result = square(5) print(result) # 25 Notice we use return, not print. The function sends the answer back to whoever called it. The caller decides what to do with it.