Using iteration, write a method that takes an integer as a parameter and counts down from this integer value to 1, printing each step on the screen. After that, "Blast off" will be printed. For instance, if your output is 5, your output should look like this:
5
4
3
2
1
Blast off