int expr() { int wert = term(); if (File.ReadNextChar() == '+') wert += expr(); return wert; }