n=int(input()) v=0 import math i=1 while i < math.floor(math.sqrt(n))+1 : if n % i == 0: n /= i i=1 v += 1 i+=1 print(v+1)