ArifJan

Переставить 2

Oct 18th, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. s = input()
  2. first_word = s[:s.find(' ')]
  3. second_word = s[s.find(' ') + 1:]
  4. print(second_word + ' ' + first_word)
Add Comment
Please, Sign In to add comment