Sum of Divisors
Compute the sum of all positive divisors of \(N\).
Input
One line containing \(N\).
The input satisfies:
- \(1 \le N \le 10^12\)
Output
Print the divisor sum.
Example
Input
89938414871
Output
89950368000
Compute the sum of all positive divisors of \(N\).
One line containing \(N\).
The input satisfies:
Print the divisor sum.
89938414871
89950368000
Comments