#ABC121D. XOR World

XOR World

题目描述

Let f(A,B)f(A, B) be the exclusive OR of A,A+1,...,BA, A+1, ..., B. Find f(A,B)f(A, B).

What is exclusive OR?

The bitwise exclusive OR of integers c1,c2,...,cnc_1, c_2, ..., c_n (let us call it yy) is defined as follows:

  • When yy is written in base two, the digit in the 2k2^k's place (k0k \geq 0) is 11 if, the number of integers among c1,c2,...cmc_1, c_2, ...c_m whose binary representations have 11 in the 2k2^k's place, is odd, and 00 if that count is even.

For example, the exclusive OR of 33 and 55 is 66. (When written in base two: the exclusive OR of 011 and 101 is 110.)

f(A,B)f(A, B)A,A+1,...,BA, A+1, ..., B 的排他 OR。求出 f(A,B)f(A, B)

什么是排他 OR?

整数 c1,c2,...,cnc_1, c_2, ..., c_n (我们称之为 yy )的位排他 OR 定义如下:

  • 当以二进制写入 yy 时,如果二进制表示的 c1,c2,...cmc_1, c_2, ...c_m2k2^k 位上有 11 的整数个数是奇数,则 2k2^k 位上的数字( k0k \geq 0 )是 11 ;如果该个数是偶数,则 00

例如, 3355 的排他 OR 是 66 。(以二进制书写时:011101的排他 OR 是110)。

输入格式

输入内容按以下格式标准输入:

AA BB

输出格式

计算 f(A,B)f(A, B) 并打印出来。

样例 #1

样例输入 #1

2 4

样例输出 #1

5

样例 #2

样例输入 #2

123 456

样例输出 #2

435

样例 #3

样例输入 #3

123456789012 123456789012

样例输出 #3

123456789012

说明

数据规模与约定

  • 所有输入值均为整数。
  • 0AB10120 \leq A \leq B \leq 10^{12}

样例 11 解释

2,3,42, 3, 4 分别是以二为底的 010011100。它们的排他 OR 是 101,即十进制的 55