#include <iostream>
#include <climits>
#include <cfloat>
using namespace std;

main(void)
{
	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<<"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;


}
