Programmation: Fonctions


Question 1

Qu'affiche le programme python suivant ?
def d(x,y):
	return x**2+y**2

print(d(1,2));