#include <iostream>
using namespace std;

#define INF	0x3f3f3f3f

int x = INF;

int main() {
	cout << x << endl;
	return 0;
}