def a():
  print "Start of A"
  b()
  print "End of A"

def b():
  print "Start of B"
  a()
  print "End of B"

def main():
  a()

main()
