Add Two Numbers — digit by digit with carry
The lists store digits least-significant first, which is exactly the order you add by hand. Sum each pair plus the carry, write one digit, carry the rest.
Try: