#Lutece0277. Farey Sequence

Farey Sequence

Migrated from Lutece 277 Farey Sequence

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

The Farey Sequence FnF_n for any integer nn with n2n \geq 2 is the set of irreducible rational numbers ab\frac{a}{b} with 0<a<bn0 < a < b \leq n and gcd(a,b)=1gcd(a,b) = 1 arranged in increasing order. The first few are

F2=F_2 = {12\frac{1}{2}}

F3=F_3 = {13,12,23\frac{1}{3}, \frac{1}{2}, \frac{2}{3}}

F4=F_4 = {$\frac{1}{4}, \frac{1}{3}, \frac{1}{2}, \frac{2}{3}, \frac{3}{4}$}

F5=F_5 = {$\frac{1}{5}, \frac{1}{4}, \frac{1}{3}, \frac{2}{5}, \frac{1}{2}, \frac{3}{5}, \frac{2}{3}, \frac{3}{4}, \frac{4}{5}$}

You task is to calculate the number of terms in the Farey sequence FnF_n.

Input

There are several test cases. Each test case has only one line, which contains a positive integer n(2n106)n (2 \leq n \leq 10^6). There are no blank lines between cases. A line with a single 00 terminates the input.

Output

For each test case, you should output one line, which contains N(n)N(n) ---- the number of terms in the Farey sequence FnF_n.

Samples

2
3
4
5
0
1
3
5
9

Note

The answer may exceed 3232-bit integer. Please use long long int.

The data used in this problem is unofficial data prepared by YellowWall. So any mistake here does not imply mistake in the offcial judge data.

Resources

POJ Contest,Author:Mathematica@ZSU