#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:" <<SHORT_MIN <<endl;
	cout <<"short MAX:" <<SHORT_MAX <<endl;
	cout <<"int size:" <<sizeof(int) <<endl;
	cout <<"int MAX:" <<INT_MAX <<endl;
	cout <<"int MIN:" <<INT_MIN <<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 size:"<< sizeof(float) <<endl;
	cout <<"float MIN:" <<FLOAT_MIN <<endl;
	cout <<"float MAX:" <<FLOAT_MAX <<endl;
	cout <<"Double size:" <<sizeof(double) <<endl;
	cout <<"Double MIN:" <<DOUBLE_MIN <<endl;
	cout <<"Double MAX:" <<DOUBLE_MAX <<endl;

	return 0;
}
