From de8ff13cacb27d3c654ae32fc6312bffa2e6c551 Mon Sep 17 00:00:00 2001 From: Erik Heeren Date: Tue, 3 Oct 2023 10:05:36 +0200 Subject: [PATCH] Addition --- math.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 math.py diff --git a/math.py b/math.py new file mode 100644 index 0000000..8a8998d --- /dev/null +++ b/math.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python + +a = 1 +b = 2 +c = a + b +print(c)