For function "sumtok", write
the missing recursive call. This function returns the
sum of the values from 1 to "k". For example, sumtok(5) will
return 15.
The recursive case action should add k to k-1 to k-2.... until it reaches 0.