def do_the_thing(n):
  print "Thing %d!" % n
  n = n + 1

def main():
  x = 1
  do_the_thing(x)
  do_the_thing(2)

main()

