int somme(int a, int b) { return a + b + 1 ; } int produit(int a, int b) { int prod = 0; while (b-- > 0) prod += a; return prod; }