Multiplication
Decimal operator *(Decimal other) { return Decimal(_value * other._value, _scale + other._scale); }