#include "stack.h"  // get the interface
#include <iostream>
using namespace std;

void f();

int main() {
 cout << "Calling the stack routine\n";
 f();
}


void f()
{
   Stack::push('c');
   if (Stack::pop() != 'c') cout << "impossible\n";
}
