/// Extract the primes from the card
///
/// # Arguments
/// - `card` - The card to extract the primes from
///
/// # Example
/// ```
/// use standard_card::card::get_primes;
///
/// let primes = get_primes(541511);
/// assert_eq!(7, primes);
/// ```