#include <iostream>
#include <climits>
#include <cfloat>

using namespace std;

int main()
{
	// 32 bit 2's comp int and 32 bit IEEE 754 float theoretical max vals
    cout << "2147483647 : 3.4028234*10^38" << endl;
    
    // int and float actuall vals on this system
    cout << INT_MAX << " : " << FLT_MAX << endl; 
   
    return 0;
}
