곱을 사용한 오버플로우 체크
if(num*b/b != num)
{
cout <<i << " 오버플로우발생"<< endl;
break;
}
덧샘을 사용한 오버플로우 체크
a + b < a
두 값을 더한 값이 a보다 작으면 오버플로우다.