A priority queue is a data structure which maintains a set $S$ of elements, each of with an associated value (key), and supports the following operations:
Write a program which performs the $insert(S, k)$ and $extractMax(S)$ operations to a priority queue $S$. The priority queue manages a set of integers, which are also keys for the priority.
Multiple operations to the priority queue $S$ are given. Each operation is given by "insert $k$", "extract" or "end" in a line. Here, $k$ represents an integer element to be inserted to the priority queue.
The input ends with "end" operation.
For each "extract" operation, print the element extracted from the priority queue $S$ in a line.
insert 8 insert 2 extract insert 10 extract insert 11 extract extract end
8 10 11 2