Programmation:


Question 1

Qu'affiche le programme python suivant ?
n=3
if (n>10):
	n=n-10
else:
	n=-n
print(n)