#abc179c. [abc179_c]A x B + C

[abc179_c]A x B + C

Problem Statement

Given is a positive integer NN. How many tuples (A,B,C)(A,B,C) of positive integers satisfy AtimesB+C=NA \\times B + C = N?

Constraints

  • 2leqNleq1062 \\leq N \\leq 10^6
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN

Output

Print the answer.


Sample Input 1

3

Sample Output 1

3

There are 33 tuples of integers that satisfy AtimesB+C=3A \\times B + C = 3: (A,B,C)=(1,1,2),(1,2,1),(2,1,1)(A, B, C) = (1, 1, 2), (1, 2, 1), (2, 1, 1).


Sample Input 2

100

Sample Output 2

473

Sample Input 3

1000000

Sample Output 3

13969985