Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2018
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. #!/usr/bin/python3
  2.  
  3. import sys
  4.  
  5. for line in sys.stdin:
  6.     print(str(len(line)-1) + " " + line, end='')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement