csc-python-solutions/16/1 - Blast Up.py

7 lines
94 B
Python
Raw Normal View History

2021-02-17 11:42:41 +00:00
def countup(n):
if n>1:
countup(n - 1)
else:
print('Blastoff!')
print(n)