M.py 74 B

123
  1. a= list(map(int, input().strip().split()))
  2. a.reverse()
  3. for e in a:print(e)