By definition, a symbolic expression is:
a) a natural number;
b) a name made by a succession of letters that identifies another symbolic expression;
c) a list formed of 0 or more symbolic expressions, separated by a space, delimited by round brackets. An example of symbolic expression created from a list with 3 elements is: (A 2 (3 (B))).
A definition assigns a name to a symbolic expression and it has the following form:
Name = SymbolicExpression
Two symbolic expressions E1 and E2 are equivalent if:
The input contains a succession of expression definitions (each definition on a new line), terminated (on a separate line) with the tag EOD, after which follows a succession of interrogations (one interrogation per line), ended (on a separate line) with the tag EOE.
Constrains and specifications:
The number of definitions is smaller than 30
The number of interrogations is smaller than 30
The number of symbols from a list, different from spaces and brackets, is smaller than 50.
The sign = from a definition, respective the sign ? from an interrogation are bordered by one space.
The name of an expression is at most 8 characters long.
The natural numbers are smaller or equal than 30000
The name of a symbolic expression may appear in the definition of that expression.
In the input file there is a single definition for each symbolic expression.
The order of the definitions in the input file does not matter.
The names of the symbolic expressions are not case sensitive.
The output contains one line for each interrogation from the input file, on which line will be displayed the result of the interrogation (0 or 1).
A = 12 B = 13 BB = 12 Bbb = (12) G = (1 (1 E)) c = (1 2 3) D = (1 2 3) dD = (1 2 6) E = (1 E) F = (1 E) EOD A ? B A ? BB C ? D c ? DD E ? E F ? E G ? E BB ? bbb EOE
0 1 1 0 1 1 1 0