Nice one, this is a very short and simple solution to the problem. However, it may fail for the general case as we must consider all digits as there may be a cascading effect when adding. For example, consider
n:(9#enlist 50#“1”),enlist(49#“0”),“1”
The answer should be “1000000000”, but your solution will produce “9999999999” since it does not correctly add the lower digits.