XOR Lines FIXED by Hendrik

r=raw_input
s=r()
while 1:print s;s="".join(chr(ord(i)^ord(j))for i,j in zip(r(),s))

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

download

return to the top page