import sys

i = 1
found = False

while ((i < len(sys.argv)) and not found):
    if (sys.argv[i] == "it"):
        print "argument #", i, "is it!"
	found = True
    else:
        i += 1

if not found:
    print "Didn't find it!"

