C++: usage of the standard library?

Example:

#include 
#include 
The Standard Library contains predefined classes and functions.

Solution:

std::vector vec = {10, 20, 30};
std::sort(vec.begin(), vec.end());

Beginner's Guide to C++