Сумма питона массива в Numpy

import numpy as np
a=np.array([[1,4],[3,5]])
b=np.sum(a,axis=1)
print(b)
Outrageous Ostrich