diff --git a/calculator.py b/calculator.py index 24a2fef..547bda2 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 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 +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 divide 30 by 6") +x = divide(30,6) +print(x)