print "Value\tSquare" for pair in [ (x, x*x for x in xrange(1, 6) ]: print "%d\t%d"%(pair[0], [pair[1])