fork(2) download
  1. a = int(input())
  2. b = int(input())
  3.  
  4.  
  5. b = ((b + 1) // 2) * 2 - 1
  6. for i in range(b, a - 1, -2):
  7. print(i)
Success #stdin #stdout 0.03s 9984KB
stdin
4
12
stdout
11
9
7
5