Computer Science A - 11/29/99 Directions: Using recursion, find the sum of the values from 1 to the integer parameter. Assume the parameter is > 1. (Tail recursion) int countUp(int number, int sum) //sum = 0 { if(number == 0) return sum; else return (countUp(number - 1; number + sum)); }