Create a function that takes a range of numbers and returns the sum of each digit from start to stop.
digits_sum(1, 10) ➞ 46
# total numbers in the range are = 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
# sum of each digits is = 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 1 + 0 = 46
digits_sum(1, 20) ➞ 102
digits_sum(1, 100) ➞ 901
start and stop are inclusive in the range.