Voici, un algorithme en Python , qu'affiche cet algorithme?
x=3 y=-8*x+5 z=6*y+5 z=z+y print(z)
x=-2 y=-5*x+5 z=7*y-6 z=z+y print(z)
x=3 y=9*x+1 z=6*y-7 z=z+y print(z)
x=-2 y=-8*x+8 z=-8*y+2 z=z+y print(z)
x=2 y=-3*x-8 z=2*y+8 z=z+y print(z)