Count Divisors
Compute the number of positive divisors of \(N\).
Input
One line containing \(N\).
The input satisfies:
- \(1 \le N \le 10^14\)
Output
Print the divisor count.
Example
Input
2676792946603
Output
2
Compute the number of positive divisors of \(N\).
One line containing \(N\).
The input satisfies:
Print the divisor count.
2676792946603
2
Comments