#include #include #include #include using namespace std; #pragma once namespace task9 { int init() { cout << "TASK #9" << endl; setlocale(LC_ALL, "Russian"); stack chars; ifstream input("C:\\input.txt"); string data; while (getline(input, data)) { for (char& c : data) { chars.push(c); } while (!chars.empty()) { cout << chars.top(); chars.pop(); } cout << endl; } return 0; } }