# It is very important to understand the logic behind the While loop
n = 3
while n>0:
print(n)
n = n - 1 # This can also write as (n -= 1)
print('Blastoff')
# Remember when the n=0, it does not run
# it comes out of the while loop but the value remains in the variable
print(n)