fork download
  1. i = 0
  2. while i <= 10:
  3. i = i + 1
  4. if i > 7:
  5. i = i + 2
  6.  
  7. print(i)
Success #stdin #stdout 0.02s 27704KB
stdin
Standard input is empty
stdout
13