I want to take two numbers, say 200 and 101, and transform them into their binary form. Then XOR them together and transform the result back into the decimal form. The result in this case should be 173.
I tried to play with the BaseForm[200, 2] and BaseForm[101, 2]. However, I cannot work with the result. I also tried the operator Xor, for example, Xor[1, 1], but it returns False instead of 0.
Any idea?
BitXoris intended for this. $\endgroup$