Problem1356--Friends number

1356: Friends number

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

Paula and Tai are couple. There are many stories between them. The day Paula left by airplane, Tai send one message to telephone 2200284, then, everything is changing… (The story in “the snow queen”).

After a long time, Tai tells Paula, the number 220 and 284 is a couple of friends number, as they are special, all divisors of 220’s sum is 284, and all divisors of 284’s sum is 220. Can you find out there are how many couples of friends number less than 10,000. Then, how about 100,000, 200,000 and so on.

The task for you is to find out there are how many couples of friends number in given closed interval [a,b]

Input

There are several cases.

Each test case contains two positive integers a, b(1<= a <= b <=5,000,000).

Proceed to the end of file.

Output

For each test case, output the number of couples in the given range. The output of one test case occupied exactly one line.

Sample Input Copy

1 100
1 1000

Sample Output Copy

0
1

HINT

6 is a number whose sum of all divisors is 6. 6 is not a friend number, these number is called Perfect Number.

Source/Category