#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <cstdio>
#include <locale>



int main()
{
	const std::wstring alpha(L"абвгдеёжзийклмнопрстуфхцчшщъыьэюя");
//	std::locale::global(std::locale(""));

	std::wprintf(L"lol1\n%ls\nlol2\n",alpha.c_str());
	std::wcout << "alphaBEGIN" << std::endl;
	std::wcout << alpha << std::endl;
	std::wcout << "alphaEND" << std::endl;
}

