//
//  main.cpp
//  Virgin
//
//  Created by Steven Wiseman on 28/06/2025.
//

#include <iostream>

void biggies (std::vector <int> holidays) {

    std::sort(holidays.begin(), holidays.end() [] (int a, int b) {a > 2});
    
    for (auto i : holidays) {
        
        std::cout << i << std::endl;
        
    }
    
}

int main(int argc, const char * argv[]) {
    
    std::vector <int> Branson {1, 2, 3, 2, 3, 2, 1, 2, 1, 3, 1, 4, 1};
    
    biggies (Branson);
    
    return 0;
}
