import sys
print 'The name of this program is ',sys.argv[0] 
if len(sys.argv) < 2:
	print 'You just ran the program without any command line arguments'


