// 7_7-8.cpp : コンソール アプリケーションのエントリ ポイントを定義します。
//

#include "stdafx.h"
#include <iostream>
#include <windows.h>

//using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
	std::string ss;
	ss = "abcde";
	std::cout << ss << '\n';

	MessageBox(NULL, _T("Check Console Window"), L"MessageBox", MB_OK);

	return 0;
}

