#!/usr/bin/python def square(n): m = n*n return m print "The square of 3 is ", print square(3) print m