
public interface MyStack<E> {
	void push(E element);
	E pop();
	boolean isEmpty();
}
