import sys
print 'The name of this program is ',sys.argv[0] 
print 'You just ran the program with ', len(sys.argv)-1,' command line arguments'


