Write a function that recursively finds the sum of the first n natural numbers.
n
sum(5) ➞ 15 // 1 + 2 + 3 + 4 + 5 = 15 sum(1) ➞ 1 sum(12) ➞ 78