Gmp.mpz implements very large integers. In fact,
the only limitation on these integers is the available memory.
The mpz object implements all the normal integer operations.
Note that the auto-bignum feature also makes these operations
available "in" normal integers. For instance, to calculate the
greatest common divisor between 51
and 85
, you can
do 51->gcd(85)
.