Hello, world!#

Install CVXPY and run the code on the CVXPY landing page.

Solve the following optimization problem using CVXPY:

\[\begin{split} \begin{array}{ll} \mbox{minimize} & |x| - 2\sqrt{y}\\ \mbox{subject to} & 2 \geq e^x \\ & x + y = 5, \end{array} \end{split}\]

where \(x,y \in \mathbf{R}\) are variables.

Find the optimal values of \(x\) and \(y\).

# TODO: your code here.