def calculatrice(a,b): return a+b,a*b s,p=calculatrice(2,3) print('somme=',s,'produit=',p) # Résultat : somme= 5 produit= 6