// 21_21-3.cpp : コンソール アプリケーションのエントリ ポイントを定義します。
//

#include "stdafx.h"
#include <iostream>
#include <windows.h>
#include <cctype>

using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
	char ch;

	while (cin.get(ch)) {	// 入力終了になるまで
		ch = toupper(ch);	// 大文字にする
		cout.put(ch);		// 出力する
	}


	MessageBox(NULL, _T("Check Console Window"), L"MessageBox", MB_OK);

	return 0;
}

