String Halving by youz

s=readline(i=0)
function r(n)"{"+(n<2?s[i++]:r(n/2+.5|0)+r(n>>1))+"}"
print(r(919))

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

download

return to the top page