# your code goes here
ciphertext = '466d06ece998b7a2fb1d464fed2ced7641ddaa3cc31c9941cf110abbf409ed39598005b3399ccfafb61d0315fca0a314be138a9f32503bedac8067f03adbf3575c3b8edc9ba7f537530541ab0f9f3cd04ff50d66f1d559ba520e89a2cb2a83'
ciphertext.decode('hex')
out1 = []
out2 = []
out3 = []
for x, y in zip(ciphertext.decode('hex'), ' '*10):
	out1.append(hex(ord(x)))
	out2.append(hex(ord(y)))
	out3.append(hex(ord(x) ^ ord(y)))
print out1
print out2
print out3