fork download
  1. # your code goes here
  2. n=int(input())
  3. m=int(input())
  4. n=n+1
  5. while n<m:
  6. print(n)
  7. n=n+1
  8.  
Success #stdin #stdout 0.02s 9276KB
stdin
3
7
stdout
4
5
6