def say_message(mes):
  for i in xrange(2):
    print mes

say_message("are you sleeping?")
say_message("brother john?")

