diff --git a/calculatrice.py b/calculatrice.py index 512f897..77bc911 100644 --- a/calculatrice.py +++ b/calculatrice.py @@ -10,3 +10,7 @@ if __name__ == "__main__": print("5 + 3 =", addition(5, 3)) print("5 - 3 =", soustraction(5, 3)) +def multiplication(a, b): + """Retourne le produit de a et b""" + return a * b +