#include <iostream>
#include <limits>
using namespace std;

int main() {
    cout << "Biggest  int     = " << numeric_limits<int>::max() << endl
         << "Smallest int     = " << numeric_limits<int>::min() << endl
         << "Biggest  long    = " << numeric_limits<long>::max() << endl
         << "Smallest long    = " << numeric_limits<long>::min() << endl
         << "Biggest  float   = " << numeric_limits<float>::max() << endl
         << "Smallest float   = " << numeric_limits<float>::min() << endl
         << "Biggest  double  = " << numeric_limits<double>::max() << endl
         << "Smallest double  = " << numeric_limits<double>::min() << endl;
}

