Submit solution
Points:
100.00 (partial)
Time limit:
1.0s
Memory limit:
1G
Input:
stdin
Output:
stdout
Author:
Problem type
Allowed languages
C, C++, GAS64, Pascal, Perl, PHP, Python, Sed, TCL, Text
Phân tích
Input:
1 dòng duy nhất là số
Output:
In ra các thừa số nguyên tố theo thứ tự tăng dần liên tiếp không cách.
Example Input 1 :
Copy
10
Example Output 1:
Copy
25
Example Input 2:
Copy
12
Example Output 2:
Copy
223
Giải thích :
có dạng thừa số nguyên tố là x nên ta in ra và . có dạng thừa số nguyên tố là x x nên ta in ra .
Comments
My Solution
iloveamelia