fork download
  1. # your code goes here
  2. n=int(input())
  3. m=int(input())
  4. L=range(n,m,-1)
  5. if n!=m:
  6. print(*L)
Success #stdin #stdout 0.08s 14032KB
stdin
10
3
stdout
10 9 8 7 6 5 4