#abc221a. [abc221_a]Seismic magnitude scales

[abc221_a]Seismic magnitude scales

Problem Statement

The magnitude of an earthquake is a logarithmic scale of the energy released by the earthquake. It is known that each time the magnitude increases by 11, the amount of energy gets multiplied by approximately 3232.
Here, we assume that the amount of energy gets multiplied by exactly 3232 each time the magnitude increases by 11. In this case, how many times is the amount of energy of a magnitude AA earthquake as much as that of a magnitude BB earthquake?

Constraints

  • 3leqBleqAleq93\\leq B\\leq A\\leq 9
  • AA and BB are integers.

Input

Input is given from Standard Input in the following format:

AA BB

Output

Print the answer as an integer.


Sample Input 1

6 4

Sample Output 1

1024

66 is 22 greater than 44, so a magnitude 66 earthquake has 32times32=102432\\times 32=1024 times as much energy as a magnitude 44 earthquake has.


Sample Input 2

5 5

Sample Output 2

1

Earthquakes with the same magnitude have the same amount of energy.