#include <iostream>
#include <stack>

using namespace std;

int main()
{
    stack<int> stk;
    stk.push(1); 
    stk.pop();   
    stk.top();  
}