import "math/big" func main() { num1 := big.NewInt(12345678901234567890) num2 := big.NewInt(98765432109876543210) result := big.NewInt(0) result.Mul(num1, num2) fmt.Println(result) }
import "math/big" func main() { num1 := big.NewInt(1234567890) num2 := big.NewInt(12345) result := big.NewInt(0) result.Mod(num1, num2) fmt.Println(result) }In this example, we are using `Mod` function to find the modulus of one big integer with another. The `math/big` package is a standard library package in Go.