Thinking Different




#include <iostream>
#include <Windows.h>
 
int main()
{
	ShowWindow(GetConsoleWindow(), SW_HIDE);
 
 
	// .......  코드 작성
 
	MessageBox(NULL, L"test", L"test", MB_OK);
 
	// .......  코드 작성
 
 
	return 0;
}