public string Divide(decimal left, decimal right)
 {
     return($"{left} divided by {right} is: {MathConverter.Divide(left, right)}");
 }