public string Add(decimal left, decimal right)
 {
     return($"{left} plus {right} is: {MathConverter.Add(left,right)}");
 }