Up and Down by kt3k

import sys
print''.join(reduce(lambda x,y:chr(ord(x)-ord(y)%6+2),z)for z in zip(*sys.stdin)[:-1])

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

download

return to the top page