Create a function that takes a positive integer and returns a string expressing how the number can be made by multiplying powers of its prime factors.
express_factors(2) ➞ "2"
express_factors(4) ➞ "2^2"
express_factors(10) ➞ "2 x 5"
express_factors(60) ➞ "2^2 x 3 x 5"
n is a prime number, return n as a string as in example #1 above." x ".