The digital root of a non-negative integer is the single digit value we get if we find the sum of its digits and keep doing this on the result until we end up with a single digit answer.
Examples:
The digital root of 25 is 2+5 = 7.
For 123, 1+2+3 = 6, so the digital root of 123 is 6.
For...