#include <iostream>
#include <vector>
using namespace std;
int main() {
vector<string> cars;
cout << cars.empty(); // 输出 1(向量为空)
return 0;
}