package torea; interface IStack{ void push(E e); E pop(); E peek(); boolean isEmpty(); int size(); }