# sqarg1.py
# Written by Todd Wareham for CS 2500
"""
Prints the square of the 1st command-line argument.

No error-checking done to see if there is exactly one command-line argument. 
"""

import sys

print "The square of ", int(sys.argv[1]), " is ", \
      int(sys.argv[1]) * int(sys.argv[1])
