#include <fstream>
#include <iostream>
#include <string>
#include <windows.h>
int main() {
SetConsoleOutputCP(65001); // здесь установим кодовую страницу UTF-8
std::ifstream in("Onegin.txt");
std::string tmp;
while (getline(in, tmp)) {
std::cout << tmp << std::endl;
}
in.close();
return 0;
}