Create a recursive Python program that adds up the first n numbers where n is read from the user. Note*: There must be a base case that comes first in this function and the recursive case must be called on something smaller which is used in computing the solution to the whole problem.