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