a := big.NewRat(4, 6) b := big.NewRat(2, 3) c := new(big.Rat).Quo(a, b) fmt.Println(c) // Output: 1/1In this code, we first create two Rat values representing fractions 4/6 and 2/3. Then, we call the Quo method on one of the Rat values with the other as its argument. The result is a new Rat value representing the quotient of the two fractions. In this case, the result is a whole number, 1. This code example demonstrates the use of the "math/big" package to perform arithmetic operations on rational numbers.