If a number is given as an input find sum of all the digits of number till that number
For example 11 is input then answer is 1+2....+9+(1+0)+(1+1) The Brute-force method would be to calculate sum of digits of all the numbers that are less than a number.I have implemented that method iam wondering if there is any other way to do it without actually calculating sum of digits of every number
