
#include <iostream>

#include "stack.hpp"

using  namespace std;

// You could use:
// using std::cout
// using std::endl;
// or:
// std::cout << ... << std::endl;

int main(void)
{
  Stack<int> myIntStack(42);
  
  myIntStack.push(25);
  myIntStack.push(10);
  
  cout << "Size: " << myIntStack.size() << endl;
  cout << myIntStack.pop() << endl;
  cout << myIntStack.pop() << endl;
  
  return(0);
}

