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