I have this code:
import numpy as np
a = np.array([[1, -0.15],[-0.1,1]])
b = np.array([10000, 18000])
print(np.linalg.solve(a,b))
It gives me these value outputs which are correct:
[12893.40101523 19289.34010152]
I need a code that will add these two values together.