class Arbre:
    def __init__(self,racine,*enfants):
        self.root = racine
        self.enfants = enfants