public override string ShowOperator(string Result, string x, Operator Operator)
        {
            string Res = x;

            foreach (Operator Oper in Operator.Operators)
            {
                Res = Oper.ShowOperator(Res, x);
            }
            return(Operator.ExtraMathFunction.ShowOperator(Result, Res, Operator));
        }