The Standard Template Library (STL) provides built-in data structures and algorithms.
It helps you write efficient and clean code.
A vector is a dynamic array that can change size.
A map stores key-value pairs sorted by key.
A set stores unique values and automatically sorts them.
Create a vector, map, and set. Insert values and print them.