<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import numpy as np
from scipy.linalg import solve

A = np.array(
    [
        [3, 2],
        [2, -1],
    ]
)
print(A)

b = np.array([12, 1]).reshape((2, 1))
print(b)

x = solve(A, b)
print(x)
</pre></body></html>