#include <iostream>
#include <stack>
using namespace std;
int main() {
stack<string> cars;
// 检查栈是否为空
cout << cars.empty();
return 0;
}