#ABC121D. XOR World
XOR World
题目描述
Let be the exclusive OR of . Find .
What is exclusive OR?
The bitwise exclusive OR of integers (let us call it ) is defined as follows:
- When is written in base two, the digit in the 's place () is if, the number of integers among whose binary representations have in the 's place, is odd, and if that count is even.
For example, the exclusive OR of and is . (When written in base two: the exclusive OR of 011
and 101
is 110
.)
设 是 的排他 OR。求出 。
什么是排他 OR?
整数 (我们称之为 )的位排他 OR 定义如下:
- 当以二进制写入 时,如果二进制表示的 中 位上有 的整数个数是奇数,则 位上的数字( )是 ;如果该个数是偶数,则 。
例如, 和 的排他 OR 是 。(以二进制书写时:
011
和101
的排他 OR 是110
)。
输入格式
输入内容按以下格式标准输入:
输出格式
计算 并打印出来。
样例 #1
样例输入 #1
2 4
样例输出 #1
5
样例 #2
样例输入 #2
123 456
样例输出 #2
435
样例 #3
样例输入 #3
123456789012 123456789012
样例输出 #3
123456789012
说明
数据规模与约定
- 所有输入值均为整数。
样例 解释
分别是以二为底的 010
、 011
、 100
。它们的排他 OR 是 101
,即十进制的 。