ALPHA_ASCII by recursive

import os
for c in os.read(0,999):
 if'9'<c:print ord(c),

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

download

return to the top page