S -> "if" E "then" S "else" S
S -> "begin" S L
S -> "print" E

L -> "end"
L -> ";" SL

E -> "num" "=" "num"

