# Ces programmes sont sous licence CeCILL-B V1.

def annoncerUnVol (destination, horaire):
  print("Le vol en direction de ",end="")
  print(destination,end="")
  print(" décollera à ",end="")
  print(horaire)
  print("------------------------------------------------")
  print()
  print()

annoncerUnVol("Tokyo","9h00")
annoncerUnVol("Sydney","9h30")
annoncerUnVol("Toulouse","9h45")
