Gửi bài giải
Điểm:
1,00 (OI)
Giới hạn thời gian:
1.0s
Giới hạn bộ nhớ:
256M
Input:
stdin
Output:
stdout
Nguồn bài:
Dạng bài
Ngôn ngữ cho phép
C, C++, Java, Kotlin, Pascal, PyPy, Python, Scratch
Given a positive integer ~N~ (~ N \leq 10^{10} ~)
Requirement: Decompose ~N~ into prime factors and count the divisors of ~N~.
Input
- A single line containing the positive integer ~N~.
Output
- The first line should write the prime factorization of ~N~.
- The second line should write the number of divisors of ~N~.
Sample Input
100
Sample Output
2*2*5*5
9
Bình luận