不明白这个错误怎么解决

代码如下
import cvxpy as cp
from numpy import array
c = array([70, 50, 60])
a = array([[2, 4, 3], [3, 1, 5], [7, 3, 5]])
b = array([150, 160, 200])
x = cp.Variable(3, pos=True)
obj = cp.Maximize(c@x)
cons = [a@x <= b]
prob = cp.Problem(obj, cons)
prob.solve(solver='GLPK_MI')
print('最优解为:', x.value)
print('最优值为:', prob.value)
第十行错误没看明白

img

把下方的错误信息也提供一下。