Given two integers a and b, return a xor b. Remember, the xor operator is a bitwise operator that's usually represented by the ^ character.
a
b
^
For example, if your input was 5 7, then you should print 2.
5 7
2