计算平方

Python 简单
编写一个函数 `square(n)`,返回n的平方。 **示例:** ```python print(square(5)) # 输出: 25 print(square(-3)) # 输出: 9 ```

你的代码