#include <iostream>
#include <stack>
using namespace std;
int main() {
stack<string> cars;
// Check if the stack is empty
cout << cars.empty();
return 0;
}