class Brain(Agent):
    """The driver Agent of the program, manages all other agents"""
    def __init__(self):
        """default constructor"""
        super(Brain, self).__init__("brain")
        self.mouth = Mouth()
        self.message = "Hello World!"

    def say_hello_world(self):
        self.mouth.speak()