UTF8 in C++

to output correct characters in your programs use the following:

#include <Windows.h>;
 
int main()
{
  SetConsoleOutputCP(1251);
 
return 0;
}