Move To Front Decode by hallvabo

s=''
t='0123456789'
for i in map(int,raw_input()):s+=t[i];t=t[i]+t[:i]+t[i+1:]
print s

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

download

return to the top page