fork download
  1. a = int(input())
  2. b = int(input())
  3. d = a // 2
  4. f = a / 2
  5. if a < b:
  6. if d != f:
  7. for i in range(a,b,2): print(i)
Success #stdin #stdout 0.08s 14144KB
stdin
23
43
stdout
23
25
27
29
31
33
35
37
39
41