R="" M=int(R.join(raw_input().split()[::-1]),16) while M>9:R+=chr(M&255);M>>=9 print R
Note that non-ascii characters in the above source code will be escaped (such as \x9f).
download
return to the top page