===================================== Stack Data Structure: Local Variables ===================================== We want to compute (for some reason) the formula $a^2 + 2b + bc$. The variables $a$, $b$ and $c$ are stored on the stack. After the computation these variables are removed from the stack and the result was pushed on the stack. Complete the following code snippet: :import: session02/use_local_var.s :navigate: up -> doc:index back -> doc:session02/page04 next -> doc:session02/page06