import "math/big" numStr := "12345678901234567890" num := new(big.Int) num.SetString(numStr, 10)
import "math/big" x := big.NewInt(12345) y := big.NewInt(67890) sum := new(big.Int) sum.Add(x, y)
import "math/big" x := big.NewInt(12345) y := big.NewInt(67890) product := new(big.Int) product.Mul(x, y)This code creates two big.Int values `x` and `y` with values `12345` and `67890`, respectively. It then multiplies them together to create a new big.Int value `product`. Package library: `math/big`