5 lines
84 B
Python
5 lines
84 B
Python
import sys
|
|
|
|
for line in sys.stdin:
|
|
print(str(len(line)-1) + ' ' + line, end='')
|