• + 0 comments
    int max_of_four(int a, int b, int c, int d) {
        return std::max({a, b, c, d});
    }