Guest User

Untitled

a guest
Oct 23rd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. import sys
  2.  
  3. for line in sys.stdin:
  4. linest = [str(x + "a "
  5. ).replace("\n", ""
  6. ) for x in line.split(" "
  7. ) if x != "\n"]
  8. print(linest, flush=True)
Add Comment
Please, Sign In to add comment