#include <stack> stack<int> stack;
stack.push(element);
stack.pop();
stack.top();
stack.size();
stack.empty();
swap(stack1,stack2);