#include <iostream> #include <stack> using namespace std; int main() { setlocale(LC_CTYPE,"ukr"); stack <int> steck; int i=0; cout<<"Введіть 5 чисел: "<<endl; for(int i=0; i<5; i++) { int a; cin >> a; steck.push(a); } cout<<"Головний елемент: "<<steck.top()<<endl; cout<<"Зчитаний стек: "; for(int i=0; i<5; i++) { cout<<steck.top()<<" "; steck.pop(); } };