Write a program to compute the complete prime factorization of the input number. The output should be an ordered sequence of prime divisors of the input with largest divisor first. For example, On input 42, the output is 7 3 2. On input 16, the output is 2, etc.