package stack;

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