def dashes():
  print "========================"

def main():
  print "Hello, world!"
  dashes()
  print "How are you?"
  dashes()

main()

