XOR Lines FIXED by recursive

V=[0]*999
while 1:V=[v^r for v,r in zip(V,map(ord,raw_input()))];print"".join(map(chr,V))

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

download

return to the top page