diff --git a/Test2.py b/Test2.py index e69de29..30a337c 100644 --- a/Test2.py +++ b/Test2.py @@ -0,0 +1,10 @@ +# Add two numbers and return the result +def add_numbers(a, b): + return a + b + + + +# Subtract two numbers and return the result +def subtract_numbers(a, b): + return a - b +