diff --git a/README.md b/README.md index f5b2d06..8bef31a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # MathNoteSolver Making an open source MVP similar to the new AI math notes feature in IOS 18 +cool diff --git a/math.py b/math.py new file mode 100644 index 0000000..8b7697c --- /dev/null +++ b/math.py @@ -0,0 +1,14 @@ +def add(a,b): + return a+b + +def subtract(a,b): + return a-b + +def mul(a,b): + return a*b + +def div(a,b): + return a/b + +def pow(a,b): + return a**b