#include <iostream>
#include <climits>
#include <cfloat>
using namespace std;
int main(){
	cout << "char  size:" << sizeof(char) <<endl;
	cout << "char MIN:" << CHAR_MIN << endl;
	cout << "char MAX:" << CHAR_MAX << endl;
	cout << "short size:" << sizeof(short) <<endl;
	cout << "short MIN:" << SHRT_MIN << endl;
	cout << "short MAX:" << SHRT_MAX << endl;
	cout << "int size:" << sizeof(int) <<endl;
	cout << "int MIN:" << INT_MIN << endl;
	cout << "int MAX:" << INT_MAX << endl;
	cout << "long size:" << sizeof(long) << "=" << sizeof(long long) << endl;
	cout << "long MIN:" << LLONG_MIN << endl;
	cout << "long MAX:" << LLONG_MAX << endl;
	cout << "unsigned int:" << sizeof(unsigned int) <<endl;
	cout << "UINT max:" << UINT_MAX << endl;

	cout << "float:" << sizeof(float) <<endl;
	cout << "float MIN:" << FLT_MIN << endl;
	cout << "float MAX:" << FLT_MAX << endl;

	cout << "double size:" << sizeof(double) <<endl;
	cout << "double MIN:" << DBL_MIN << endl;
	cout << "double MAX:" << DBL_MAX << endl;


	return 0;
}




