아래의 함수를 main 함수 맨 윗줄에서 사용한다.
void preset()
{
std::ios_base::sync_with_stdio(false);
std::cin.tie(NULL);
std::cout.tie(NULL);
}
→ cin, cout이 scanf, printf에 비해서 속도가 많이 느리고 std::endl보다 '\n'가 훨씬 빠르다.
→ sync_with_stdio(false); 를 이용해서 C++ 입출력 객채를 가속시켜서 사용할 것이라면