#include <iostream>
#include <string>
using namespace std;

int main() {
	
	std::wstring test(L"test");
	
	std::cout << test << endl;
	
	// your code goes here
	return 0;
}