Compute the bitwise AND of all integers in the inclusive range [a, b]. The result keeps only the common leading bits shared by a and b.
Input format
One line: two integers a and b with a <= b.
Output format
One line: the bitwise AND of a, a+1, ..., b.
Constraints
- 0 <= a <= b <= 2000000000