Introduction - If you have any usage issues, please Google them yourself
In mathematics, a prime number (or a prime) is a natural number which has exactly two distinct natural number divisors: 1 and itself. In many cases, it is not enough to know whether a number is prime sometimes, you need to know its factors.
Every positive integer greater than 1 can be expressed as a product of prime numbers. This factorization is unique and is called the prime factorization. For example, the number 60 can be decomposed into factors 2×2×3×5, each of which is prime. Note that the same prime can appear more than once in the factorization. Note that the same prime can appear more than once in the factorization.
Write a program to display the prime factorization of a number n.