Number of Divisors
Compute the number of positive divisors of \(n\).
Input
One line containing \(n\).
The input satisfies:
- \(1 \le n \le 10^12\)
Output
Print the number of positive divisors of \(n\).
Example
Input
18366816037
Output
8
Compute the number of positive divisors of \(n\).
One line containing \(n\).
The input satisfies:
Print the number of positive divisors of \(n\).
18366816037
8
Comments