fork download
  1. # your code goes here
  2. min = int(input())
  3. max = int(input())
  4. while min <= max:
  5. print(min)
  6. min = min + 1
Success #stdin #stdout 0s 23352KB
stdin
1
3
stdout
1
2
3