Hide

Problem D
Coprime Integers

Given intervals [a,b] and [c,d], count the number of ordered pairs of co-prime integers (x,y) such that axb and cyd. Coprime integers have no common factor greater than 1.

Input

The input consists of a single line of four space-separated integers a, b, c, and d. These integers satisfy the bounds (1ab107, 1cd107).

Output

Print a single integer: the number of coprime pairs (x,y) with axb,cyd.

Sample Input 1 Sample Output 1
1 5 1 5
19
Sample Input 2 Sample Output 2
12 12 1 12
4
Sample Input 3 Sample Output 3
1 100 1 100
6087
Hide

Please log in to submit a solution to this problem

Log in