#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;

}

