// ConsoleApplication1.cpp: 콘솔 응용 프로그램의 진입점을 정의합니다.
//

#include "stdafx.h"
#include <iostream>
#include <algorithm>
#include <limits>
using namespace std;

int main()
{
    int val1;
    val1 = numeric_limits<int>::max();
    cout << val1;
}

+ Recent posts