Advertisement
Bad_Programist

Untitled

Nov 28th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. a = input()
  2. b = a.split(' ')
  3. c = []
  4. c.append(b[-1])
  5. for i in range(len(b) - 1):
  6.     c.append(b[i])
  7. res = ' '.join(c)
  8. print(res)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement