Ascii decode by hallvabo

n=input()
_=''
while n:_=chr(n&255)+_;n>>=8
print _

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

download

return to the top page