press row by

import sys
s=sys.stdin.read().replace('\n','')
*_,=map(print,[s[x:x+29] for x in range(0,len(s),29)])

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

download

return to the top page