#include <iostream>
using namespace std;

int main() {
	uint16_t n = -1.0;
	int16_t n2 = 3235346345248634.0;
	int16_t n3 = INT16_MAX + 1;
	int16_t n4 = INT32_MAX;
	cout << n << endl << n2 << endl << n3 << endl << n4;
	// your code goes here
	return 0;
}