#include <Windows.h>
#include <sstream>
int CALLBACK WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
std::ostringstream oss;
oss << "C++";
oss << " ";
oss << 26;
std::string s = oss.str();
LPCSTR lpcstr = s.c_str();
MessageBoxA(0, lpcstr, "info", MB_OK);
}
/*
run:
C++ 26
*/