#include<iostream> int main(){ int a,n,m,b,c; scanf("%d",&m); n=1; while(m>=n){ while(m%n==0){ a++; } n++; } printf("%d",a); return 0; }