Problem B
Add or Multiply

Your younger sister is playing with a wooden math toy
consisting of number and operator blocks.
Each number block is printed with a single digit from
Further, she repeatedly makes one of the following moves.
-
s
(swap): Swaps the th and th number blocks. -
f
(flip): Flips the th operator block. Its operator alternates between and . -
a (all flip): Flips all the operator blocks in the entire math expression.
After her move, you have to quickly answer the updated value (possibly the same as the previous one). Remember that you must perform multiplications earlier than additions.
Input
The first line of input contains two integers
Output
The first line of output should be the value of the initial
expression. Then, output
Explanation of Sample 1
-
: initial expression. -
: swaps the first number ( ) and the second number ( ). -
: flips all the operators. -
: flips the second operator ( ). -
: again, flips all the operators.
Sample Input 1 | Sample Output 1 |
---|---|
3 4 2+3*4 s 1 2 a f 2 a |
14 11 10 24 9 |