Schrijf een functie kolomsom(matrix) die per kolom uit de matrix het totaal bepaalt.
kolomsom(matrix)
>>> kolomsom([[1, 2], [8, 9]]) [9, 11]