diff --git a/python/math.py b/python/math.py new file mode 100644 index 0000000..d2bd3a1 --- /dev/null +++ b/python/math.py @@ -0,0 +1,11 @@ +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 \ No newline at end of file