Problem R
Non-Prime Factors
In many programming competitions, we are asked to find (or
count the number of) Prime Factors of an integer
For example, integer
Input
The first line contains an integer
Output
For each query
Warning
The I/O files are large. Please use fast I/O methods.
Sample Input 1 | Sample Output 1 |
---|---|
4 100 13 12 2018 |
7 1 4 2 |