#P10618. [ICPC 2013 WF] Factors
[ICPC 2013 WF] Factors
题目描述
The fundamental theorem of arithmetic states that every integer greater than can be uniquely represented as a product of one or more primes. While unique, several arrangements of the prime factors may be possible. For example:
- ;
- $20=2\times 2\times 5=2\times 5\times 2=5\times 2\times 2$;
Let be the number of different arrangements of the prime factors of . So and .
Given a positive number , there always exists at least one number such that . We want to know the smallest such .
输入格式
The input consists of at most test cases, each on a separate line. Each test case is a positive integer .
输出格式
For each test case, display its number and the smallest number such that . The numbers in the input are chosen such that .
1
2
3
105
1 2
2 6
3 12
105 720
