Bedtime Reading I

Given an integer I, compute the sum of all its divisors.

Easy2MathNumber theoryBrute forceNo attempts yetTime limit2sMemory limit512 MB

Problem

The sigma function of a number is the sum of that number's divisors. For example, the divisors of 12 are 1, 2, 3, 4, 6, and 12, so the sigma function of 12 is 28.

Given an integer II, compute the sigma function of II.

Input

The first line contains an integer II (1I10000001 \le I \le 1\,000\,000).

Output

Print the sum of all divisors of II on the first line.