diff --git a/calculator.py b/calculator.py index a5a41c4..3df6714 100644 --- a/calculator.py +++ b/calculator.py @@ -2,4 +2,7 @@ def add(a, b): return a+b def subtract(a, b): - return a-b \ No newline at end of file + return a-b + +def multiply(a, b): + return a*b