def sum_of_digits(n): sum = 0 while (n != 0): sum = sum + int(n % 10) n = int(n/10) return sum
Sum of n integers 1 + 2 + 3 + ... + n = n * (n + 1) / 2