#ABC169D. [ABC169D] Div Game

[ABC169D] Div Game

Score : 400400 points

Problem Statement

Given is a positive integer NN. Consider repeatedly applying the operation below on NN:

  • First, choose a positive integer zz satisfying all of the conditions below:- zz can be represented as z=pez=p^e, where pp is a prime number and ee is a positive integer;
    • zz divides NN;
    • zz is different from all integers chosen in previous operations.
  • Then, replace NN with N/zN/z.

Find the maximum number of times the operation can be applied.

Constraints

  • All values in input are integers.
  • 1N10121 \leq N \leq 10^{12}

Input

Input is given from Standard Input in the following format:

NN

Output

Print the maximum number of times the operation can be applied.

24
3

We can apply the operation three times by, for example, making the following choices:

  • Choose z=2(=21)z=2 (=2^1). (Now we have N=12N=12.)
  • Choose z=3(=31)z=3 (=3^1). (Now we have N=4N=4.)
  • Choose z=4(=22)z=4 (=2^2). (Now we have N=1N=1.)
1
0

We cannot apply the operation at all.

64
3

We can apply the operation three times by, for example, making the following choices:

  • Choose z=2(=21)z=2 (=2^1). (Now we have N=32N=32.)
  • Choose z=4(=22)z=4 (=2^2). (Now we have N=8N=8.)
  • Choose z=8(=23)z=8 (=2^3). (Now we have N=1N=1.)
1000000007
1

We can apply the operation once by, for example, making the following choice:

  • z=1000000007(=10000000071)z=1000000007 (=1000000007^1). (Now we have N=1N=1.)
997764507000
7