#include <climits>
#include <iostream>

using namespace std;

int main() {
    int maxx = LLONG_MAX;
    cout << maxx << endl;
    return 0;
}