package stack;

public interface MyStack<T> {
	
	void push();
	
}
