diff --git a/calculator.py b/calculator.py index 24a2fef..e985691 100644 --- a/calculator.py +++ b/calculator.py @@ -1,16 +1,15 @@ -def multiply(a,b): - return a * b - def add(a,b): return a+b def subtract(a,b): return a-b +def multiply(a,b): + return a * b + def divide(a,b): return a/b - print("I'm going use the calculator functions to multiply 5 and 6") x = multiply(5,6) print(x) \ No newline at end of file