Hide
Problem C
Countdown
Will things ever be the same again?
Write a program that, given an integer
Input
Input consists of one line containing the integer
Output
Output consists of
Sample Input 1 | Sample Output 1 |
---|---|
6 |
6 5 4 3 2 1 |
Sample Input 2 | Sample Output 2 |
---|---|
1 |
1 |
Sample Input 3 | Sample Output 3 |
---|---|
23 |
23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 |