/// Extract the suit value from the card
///
/// # Arguments
/// - `card` - The card number
///
/// # Returns
/// The suit of the card
///
/// # Example
/// ```
/// use standard_card::card::get_suit;
///
/// let suit = get_suit(541511);
/// assert_eq!(1, suit);
/// ```