14 lines
151 B
C++
14 lines
151 B
C++
#include <iostream>
|
|
#include <climits>
|
|
|
|
using namespace std;
|
|
|
|
int main (void) {
|
|
|
|
cout << INT_MAX << endl;
|
|
cout << INT_MIN << endl;
|
|
|
|
return 0;
|
|
|
|
}
|