diff --git a/basic-maths.py b/basic-maths.py index 0ff62d2..e5da6b3 100644 --- a/basic-maths.py +++ b/basic-maths.py @@ -4,8 +4,7 @@ def addition(a,b): return a + b def substraction(a,b): - # add code here - # return result + return a -b def multiplication(a,b): # add code here