#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 max :"<< SHRT_MAX <<endl;
cout<< "short min:" << SHRT_MIN<<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 size: "<<sizeof(unsigned int)<<endl;
cout<<"unsigned int max:"<< UINT_MAX<<endl;
cout<<"unsigned int min is 0 "<<endl;
cout<<"float size: "<<sizeof(float)<<endl;
cout<<"float max: "<< FLT_MAX<<endl;
cout<<"float min: "<<FLT_MIN<<endl;
cout<<"double size: "<<sizeof(double)<<endl;
cout<<"double min:"<< DBL_MIN<<endl;
cout<<"double max:"<< DBL_MAX<<endl;
cout<<"thats all for now"<<endl;
return 0;
}


