interface Stack<T>
boolean
isEmpty()
T
peek()
pop()
void
push(T t)
int
size()
void push(T t)
T peek()
T pop()
boolean isEmpty()
int size()