# 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
Standard input is empty
['0x46', '0x6d', '0x6', '0xec', '0xe9', '0x98', '0xb7', '0xa2', '0xfb', '0x1d'] ['0x20', '0x20', '0x20', '0x20', '0x20', '0x20', '0x20', '0x20', '0x20', '0x20'] ['0x66', '0x4d', '0x26', '0xcc', '0xc9', '0xb8', '0x97', '0x82', '0xdb', '0x3d']