Notice that the 2D array 'money' is a matrix. Usually we index matrices starting at 1, e.g. the first row is row 1. So $\text{money}[j][k]$ represents the amount of type '$j$' money on day '$k$'. So the sum of the $k$-th column is the sum of money on day $k$. I think if you write it as that or as the "$k$-th column sum" it will be clear. You can also write this as
$$
\text{TotalMoney}(k)= \sum_{j=0}^n \text{money}(j,k)
$$
if there are $n+1$ sources of money.
What's nice about the description as a matrix is you can use the 1-norm and $\infty$-norm of the matrix to calculate the largest column and row-sums respectively which would give the maximum amount of money received in a day and by a source respectively.