Maniacal Midsummer Marathon 2014 by AL, TL, JJ
"What do we make them do for problem A?"
"Uh… make them prime factorize a number."
"Isn't that a bit too easy?"
"Fine, make them prime factorize a BIG number."
"Like with GNFS? Isn't that a bit too hard?"
"Fine, let's make them prime factorize a lot of numbers."
"Just how many are you thinking?"
"All of them."
"wat."
"k screw this, let's slap on some bounds and call it a day."
Given two integers
Input Specification
The input consists of two lines. The first line will contain the integer
Output Specification
The output should contain
Sample Input
Copy
20
30
Sample Output
Copy
2
2
2
1
2
1
2
1
2
1
3
Comments