A set of natural numbers $\{a_1,a_2,...,a_n\}$ are given. We add the numbers one pair at a time in some order. Is it true that the number of carries during our process is independent of the order?
Example: $\{57, 82, 19\}$.
$57+82 = 139$ (1 carry), $139+19 = 158$ (1 carry) = 2 carries
$82+19 = 101$ (2 carries), $101 + 57 = 158$ (0 carry) = 2 carries
Each time we perform a carry, it is because the value is too high (higher than $9$). But why does this need to happen the same number of times?