Given the following recursive function
write down the missing recursive call such that this function given
2 numbers, will find the sum of all the integers between them.
Example: given 1 and 4, the method should add 1+2+3+4 = 10.