Duplicate characters by

#!/usr/bin/python3\x0d
import sys\x0d
for i in sys.stdin.readlines():\x0d
   for j in i:\x0d
      sys.stdout.write(j + j)\x0d

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

download

return to the top page