using namespace std;
int main() {
// Create a vector called numbers that will store integers
vector<int> numbers = {1, 7, 3, 5, 9, 2};
// Find the smallest number
auto it = min_element(numbers.begin(), numbers.end());
cout << *it;
return 0;
}