BigInteger dividend = new BigInteger("100000000000000000000"); BigInteger divisor = new BigInteger("1000000"); BigInteger quotient = dividend.divide(divisor); System.out.println("Quotient = " + quotient);In this example, we create two BigInteger objects 'dividend' and 'divisor' representing the values of 10^20 and 10^6 respectively. We then divide the dividend by the divisor using the 'divide' method and store the resulting quotient in another BigInteger variable 'quotient'. Finally, we print the value of the quotient. The java.math.BigInteger class is part of the standard Java library, which means it's included in the 'java.math' package.