# Ces programmes sont sous licence CeCILL-B V1.

def reinitialise():
  global x
  x = 0

x = 3
x = 5
reinitialise()
x = 7
reinitialise()
x = 4
