insert word length by clock

import re
print re.sub('\w+',lambda x:`len(x.group())`+"_"+x.group(),raw_input())

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page