#abc115d. [abc115_d]Christmas
[abc115_d]Christmas
Problem Statement
In some other world, today is Christmas.
Mr. Takaha decides to make a multi-dimensional burger in his party. A level- burger ( is an integer greater than or equal to ) is the following thing:
- A level- burger is a patty.
- A level- burger is a bun, a level- burger, a patty, another level- burger and another bun, stacked vertically in this order from the bottom.
For example, a level- burger and a level- burger look like BPPPB
and BBPPPBPBPPPBB
(rotated degrees), where B
and P
stands for a bun and a patty.
The burger Mr. Takaha will make is a level- burger. Lunlun the Dachshund will eat layers from the bottom of this burger (a layer is a patty or a bun). How many patties will she eat?
Constraints
- the total number of layers in a level- burger
- and are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the number of patties in the bottom-most layers from the bottom of a level- burger.
Sample Input 1
2 7
Sample Output 1
4
There are patties in the bottom-most layers of a level- burger (BBPPPBPBPPPBB
).
Sample Input 2
1 1
Sample Output 2
0
The bottom-most layer of a level- burger is a bun.
Sample Input 3
50 4321098765432109
Sample Output 3
2160549382716056
A level- burger is rather thick, to the extent that the number of its layers does not fit into a -bit integer.