fork download
  1. def sri(d,v):
  2. for i in range(d,v):
  3. print(i)
  4. print(d+v)
  5. a=int(input())
  6. b=int(input())
  7. sri(a,b)
Success #stdin #stdout 0.02s 7160KB
stdin
6
9
stdout
6
7
8
15