From 3d103ebba6e6cc72eb131cc10d3c9a68ecee5718 Mon Sep 17 00:00:00 2001 From: PeterGuek <76177881+PeterGuek@users.noreply.github.com> Date: Fri, 19 Jul 2024 20:28:08 -0700 Subject: [PATCH] Create main.py --- Exercice5/main.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Exercice5/main.py diff --git a/Exercice5/main.py b/Exercice5/main.py new file mode 100644 index 0000000..a5afa83 --- /dev/null +++ b/Exercice5/main.py @@ -0,0 +1,5 @@ +def sum(a, b): + return a + b + +def subtraction(a, b): + return a - b