// 2. Specify in the stack interface that the push() and pop() methods throws StackException
public interface Stack{
	public void push(int x) throws StackException;
      	public int  pop( ) throws StackException;
}
