#include <iostream>
#include <limits>
using std::cout;
using std::endl;
using std::numeric_limits;

int main() {
	unsigned int n = -1;
	unsigned int m = numeric_limits<unsigned int>::max();
	unsigned int l = -2;
	
	cout << n << endl;
	cout << m << endl;
	cout << l << endl;
}