using namespace std;
int main() {
// Create a vector called cars that will store strings
vector<string> cars = {"Volvo", "BMW", "Ford", "Mazda"};
// Get the first element
cout << cars[0] << "\n";
// Get the second element
cout << cars[1] << "\n";
return 0;
}