# sqargs1.py
# Written by Todd Wareham for CS 2500
"""
Prints the squares of all command-line arguments.

No error-checking done to see if there are command-line arguments or if these
 arguments are integers. 
"""

import sys

for x in sys.argv[1:]:
    print "The square of ", int(x), " is ", int(x) * int(x)
