#abc172d. [abc172_d]Sum of Divisors

[abc172_d]Sum of Divisors

Problem Statement

For a positive integer XX, let f(X)f(X) be the number of positive divisors of XX.

Given a positive integer NN, find sumK=1NKtimesf(K)\\sum_{K=1}^N K\\times f(K).

Constraints

  • 1leqNleq1071 \\leq N \\leq 10^7

Input

Input is given from Standard Input in the following format:

NN

Output

Print the value sumK=1NKtimesf(K)\\sum_{K=1}^N K\\times f(K).


Sample Input 1

4

Sample Output 1

23

We have f(1)=1f(1)=1, f(2)=2f(2)=2, f(3)=2f(3)=2, and f(4)=3f(4)=3, so the answer is $1\\times 1 + 2\\times 2 + 3\\times 2 + 4\\times 3 =23$.


Sample Input 2

100

Sample Output 2

26879

Sample Input 3

10000000

Sample Output 3

838627288460105

Watch out for overflows.