csc-python-solutions/16/1 - Blast Up.py
2021-02-17 12:42:41 +01:00

7 lines
94 B
Python

def countup(n):
if n>1:
countup(n - 1)
else:
print('Blastoff!')
print(n)