# Ces programmes sont sous licence CeCILL-B V1.

def tirerUnTrait ():
  print("------------------------------------------------")
  print()
  print()

print("Le vol en direction de ",end="")
print("Tokyo",end="")
print(" décollera à ",end="")
print("9h00")
tirerUnTrait()
print("Le vol en direction de ",end="")
print("Sydney",end="")
print(" décollera à ",end="")
print("9h30")
tirerUnTrait()
print("Le vol en direction de ",end="")
print("Toulouse",end="")
print(" décollera à ",end="")
print("9h45")
tirerUnTrait()
