Ascii decode by recursive

v=input()
o=""
while v:o=chr(v&255)+o;v>>=8
print o

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

download

return to the top page