#include <iostream>
using namespace std;

int main() {
	// your code goes here
	const wchar_t* wc_str = L"Hello world!";

	const char* c_str = wc_str;
	return 0;
}