#include <iostream>
#include <vector>
using namespace std;
int main() {
vector<string> cars = {"Volvo", "BMW", "Ford", "Tesla"};
cout << cars.empty(); // 输出 0(非空)
return 0;
}