For function "sumOfDigits", write
write the missing recursive call. This function takes
a non-negative integer and returns the sum of its digits.
For example, sumOfDigits(1234) returns 1+2+3+4 = 10.
Use mod (%) to get the value of the last digit.
Return the value of the last digit plus the value of recursive call