Number of Divisors
Compute the number of positive divisors of \(n\).
Input
One positive integer \(n\).
The input satisfies:
- \(1 <= n <= 10^12\)
Output
Print the number of positive divisors of \(n\).
Example
Input
6
Output
4
Compute the number of positive divisors of \(n\).
One positive integer \(n\).
The input satisfies:
Print the number of positive divisors of \(n\).
6
4
Comments