Write a program that reads in a number and prints the sum of all values from 1 up to the number. python
# Function to get sum of digits
def getSum(n):
sum = 0
for digit in str(n):
sum += int(digit)
return sum
n = 12345
print(getSum(n))