From 01b3dfc1fa7bb665245de67ff8c83398faf6d1b1 Mon Sep 17 00:00:00 2001 From: Lukas Baumann Date: Wed, 17 Feb 2021 12:42:41 +0100 Subject: [PATCH] Create 1 - Blast Up.py --- 16/1 - Blast Up.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 16/1 - Blast Up.py diff --git a/16/1 - Blast Up.py b/16/1 - Blast Up.py new file mode 100644 index 0000000..73b7525 --- /dev/null +++ b/16/1 - Blast Up.py @@ -0,0 +1,6 @@ +def countup(n): + if n>1: + countup(n - 1) + else: + print('Blastoff!') + print(n)