Write a program that counts down from 10 to 1. Use a variable and the augmented assignment operator (-=) to reduce the value by one each time.

Your program should not use a loop — just write each step out as a separate line.

Output

10
9
8
7
6
5
4
3
2
1