#P2273. Count primes

Count primes

Easy question! Calculate how many primes between [1...n]!

Input

Each line contain one integer n(1 <= n <= 1e11).Process to end of file.

Output

For each case, output the number of primes in interval [1...n]

Sample Input

2
3
10

Sample Output

1
2
4

HINT

Source