Hi codeforcer.
So let's cut right to the chase given N where 1<=N<=5000000 find the number of the prime factors the make up N.
e.g. 6=2*3 =>the answer for 6 is 2.
e.g. 12=2*2*3 =>the answer for 12 is 3.
I think it's called prime factorialzition or prime decomposition I'm not sure since my English with math vocabulary is worse than my coding skills.
Please keep it simple.
Thanks in advance.