Exemple #1
0
    //乘法
    const BigInt operator*(const BigInt &lhs, const BigInt &rhs)
    {
        return lhs.Mul(rhs);

    }