Use the Infix to Prefix algorithm shown in class to translate the following arithmetic expressions into the fully parenthesized "prefix notation" of Scheme expressions.
(11 - (((27 / 18) / 131) + 927))
v + w - x + y - z
v + w - (x + y - z)
(11 - (((27 / 18) / 131) + 927))
v + w - x + y - z
v + w - (x + y - z)