public interface Pile { void addFirst(E element); E removeFirst(); boolean isEmpty(); }