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