#include <iostream>
#include <climits>
#include <cfloat>

using namespace std;

int main() {
	cout << "Char size: " << sizeof(char) << endl;
	cout << "min char: " << CHAR_MIN << endl;
	cout << "max char: " << CHAR_MAX << endl;

	cout << "short size: " << sizeof(short) << endl;
	cout << "min short: " << SHRT_MIN << endl;
	cout << "max short: " << SHRT_MAX<< endl;

	cout << "int size: " << sizeof(int) << endl;
	cout << "min int: " << INT_MIN << endl;
	cout << "max int: " << INT_MAX << endl;

	cout << "long size: " << sizeof(long) << "=" << sizeof(long long) << endl;
	cout << "min long: " << LLONG_MIN << endl;
	cout << "max long: " << LLONG_MAX << endl;

	cout << "unsigned int size: " << sizeof(unsigned int) << endl;
	// cout << "min uint" << UINT_MIN << endl;
	cout << "max uint: " << UINT_MAX << endl;

	cout << "float size: " << sizeof(float) << endl;
	cout << "min float: " << FLT_MIN << endl;
	cout << "max float: " << FLT_MAX << endl;

	cout << "double size: " << sizeof(double) << endl;
	cout << "min double: " << DBL_MIN << endl;
	cout << "max double: " << DBL_MIN << endl;

	return 0;

};
