Count Divisors


Submit solution

Points: 100
Time limit: 1.0s
Memory limit: 256M

Author:
Problem types

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

Comments

There are no comments at the moment.