문제 주어진 숫자부터 0까지 순서대로 찍어보세요
입력 8
출력 8 7 6 5 4 3 2 1 0
code
T = int(input()) for i in range(T+1): print(T-i, end = ' ')