fork(1) download
  1. def raz():
  2. n = int(input())
  3. if n:
  4. raz()
  5. print(n)
  6.  
  7. raz()
Success #stdin #stdout 0.02s 8688KB
stdin
1
2
3
4
5
0
stdout
0
5
4
3
2
1