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 I, compute the sigma function of I.
Input
The first line contains an integer I (1≤I≤1000000).
Output
Print the sum of all divisors of I on the first line.