You are given a COWBASIC program at most 100 lines long, with each line being at most 350 characters
long. A COWBASIC program is a list of statements.
There are three types of statements:
<variable> = <expression>
<literal> MOO {
<list of statements>
}
RETURN <variable>
There are three types of expressions:
<literal>
<variable>
( <expression> ) + ( <expression> )
A literal is a positive integer at most 100,000.
A variable is a string of at most 10 lowercase English letters.
It is guaranteed that no variable will be used or RETURNed before it is defined. It is guaranteed th
at RETURN will happen exactly once, on the last line of the program.