Base 37 by teebee(leonid)

a=""
while 1:
 n=int(input(a));a="\n"
 while n:k=~n%37;a=chr(-k//26*39%97-k+65)+a;n//=37

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

download

return to the top page