#include <iostream>
#include <Windows.h>
int main() {
HWND hWnd = GetConsoleWindow();
ShowWindow(hWnd, SW_HIDE);
}
#include <windows.h>
LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
switch (uMsg)
{
case WM_CLOSE:
}
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
HWND hWnd = GetConsoleWindow();
ShowWindow(hWnd, SW_HIDE);