For example, the following command takes about 10 seconds on my system: ```console time perl -Mntheory=:all -E 'use bigint; say prime_count(2**63 - 10, 2**63 + 1000)' ``` However, getting the primes in the same range is very fast: ```console time perl -Mntheory=:all -E 'use bigint; say scalar @{primes(2**63 - 10, 2**63 + 1000)}' ``` Notice that for small enough `a` and `b`, the `prime_count` function is fast: ```console time perl -Mntheory=:all -E 'use bigint; say prime_count(2**50 - 10, 2**50 + 1000)' ```