Number of 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^12\)

Output

Print the number of positive divisors of \(n\).

Example

Input
18366816037
Output
8

Comments

There are no comments at the moment.