Write a function square to compute the square of a number.
square
>>> square(4) 16
def square(n): return n*n