#include <iostream>
#include <map>
using namespace std;
int main() {
map<string, int> people;
cout << people.empty();
return 0;
}