fork download
  1. def print_evens(lower=0, upper=10):
  2. i = lower
  3. while i < upper:
  4. if i%2 != 0:
  5. continue
  6. print i
  7. i = i+1
  8.  
  9. if __name__ == "__main__":
  10. print_evens(3, 33)
Time limit exceeded #stdin #stdout 5s 6352KB
stdin
Standard input is empty
stdout
Standard output is empty