fork download
  1. # your code goes here
  2. n=int(input())
  3. while n>0:
  4. print(n)
  5. n=n-1
Success #stdin #stdout 0.02s 9284KB
stdin
5
stdout
5
4
3
2
1