def main():
      print "hello world"
      hw()
      print "this is where I was"

def hw():
      print "Hello there world"
      
