#ABC195F. [ABC195F] Coprime Present

[ABC195F] Coprime Present

Score : 600600 points

Problem Statement

You have BA+1B-A+1 cards: for each integer from AA through BB, you have one card with that integer written on it. You will give some of them (possibly none) to your pet, Snuke.

Snuke will be happy if, for every pair of different cards, the numbers written on them are pairwise coprime; otherwise, he will be sad.

How many sets of cards will make Snuke happy?

Constraints

  • 1AB10181 \leq A \leq B \leq 10^{18}
  • BA72B-A \leq 72
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

AA BB

Output

Print the number of sets of cards that will make Snuke happy. The constraints guarantee that the answer is less than 2^{63}.

2 4
6

You have three cards with 22, 33, and 44 written on them. The following six sets of cards will make Snuke happy:

  • {}\{\}
  • {2}\{2\}
  • {3}\{3\}
  • {4}\{4\}
  • {2,3}\{2,3\}
  • {3,4}\{3,4\}
1 1
2

The following two sets of cards will make Snuke happy:

  • {}\{\}
  • {1}\{1\}
123456789000 123456789050
2125824