Advertisement
MaximTakkaTo

task7

Mar 11th, 2022
730
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. input_string = str.split(input())
  2. output = ""
  3.  
  4. for s in input_string:
  5.     output += (s[2: -2] + " ")
  6. print(output[0:len(output) - 1])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement