#include <stdio.h>
#include <tchar.h>
#include <io.h>
#include <fcntl.h>
#define SZ 256
int main(void)
{
int _ = _setmode(_fileno(stdin), _O_U16TEXT);
_ = _setmode(_fileno(stdout), _O_U16TEXT);
TCHAR input[SZ] = { 0 };
_tprintf(L"Введите текст: ");
fgetws(input, SZ, stdin); input[wcslen(input) - 1] = 0;
_tprintf(L"Введенны текст: %s", input);
return 0;
}