#99
Product Digits
 

Difficulty:Easy
Topics:math seqs


Write a function which multiplies two numbers and returns the result as a sequence of its digits.
test not run
(= (__ 1 1) [1])
test not run
(= (__ 99 9) [8 9 1])
test not run
(= (__ 999 99) [9 8 9 0 1])


Code which fills in the blank: