fork(1) download
  1. # opção 1
  2. a = 10
  3. b = 5
  4. n = a - 1
  5. while n > b:
  6. print(n)
  7. n -= 1
  8.  
Success #stdin #stdout 0.02s 8900KB
stdin
Standard input is empty
stdout
9
8
7
6