fork download
  1. l = int(input())
  2. max = int(input())
  3. while l <= max:
  4. print(l, end=" ")
  5. l += 1
Success #stdin #stdout 0.03s 9824KB
stdin
1
50
stdout
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50