#include <bits/stdc++.h>
using namespace std;
int max(const int&x,const int&y){return x<y?y:x;}
vector<int>v;
int go(){
	while(v.size()<100)v.push_back(0);
	return -1;
}
int main() {
	v.resize(1,0);
	v[0]=1;
	int l = go();
	int r = v[0];
	int res=max(l, r);
	cout<<res<<endl;
	return 0;
}