Create a function that takes a number and return a string with the number in expanded notation (AKA expanded form).
expand(13) ➞ "10 + 3"
expand(86) ➞ "80 + 6"
expand(17000000) ➞ "10000000 + 7000000"
expand(5325) ➞ "5000 + 300 + 20 + 5"
You can expect only whole numbers greater than 0 as test input.