#abc227c. [abc227_c]ABC conjecture

[abc227_c]ABC conjecture

Problem Statement

You are given a positive integer NN.

Find the number of triples of positive integers (A,B,C)(A, B, C) such that AleqBleqCA\\leq B\\leq C and ABCleqNABC\\leq N.

The Constraints guarantee that the answer is less than 2632^{63}.

Constraints

  • 1leqNleq10111 \\leq N \\leq 10^{11}
  • NN is an integer.

Input

Input is given from Standard Input in the following format:

NN

Output

Print the answer.


Sample Input 1

4

Sample Output 1

5

There are five such triples: (1,1,1),(1,1,2),(1,1,3),(1,1,4),(1,2,2)(1,1,1),(1,1,2),(1,1,3),(1,1,4),(1,2,2).


Sample Input 2

100

Sample Output 2

323

Sample Input 3

100000000000

Sample Output 3

5745290566750