Stacks

Time Limit: 1.0 second

Memory Limit: 750 KB

Imagine, that you are employed by a software development company. You work now on the famous "D++ -project", which is devoted to the creation of a new generation programming language. Your particular task is quite prosaic, though. You are to develop the memory manager being able to work with a large number of stacks.

1. Input

The first line of the input contains the total number of stack operations N, 0 < N <= 100000. Each of the next N lines contains a description of a stack operation, either in the form PUSH A B (meaning to push B into stack A), or in the form POP A (meaning to pop an element from stack A), where A is the number of stack (1 <= A <= 1000), and B is an integer (0 <= B <= 109). You may assume, that every operation in the input file is correct (i.e., before each POP operation, the respective stack is not empty).

2. Output

For each POP operation, described in the input, output the value, which this POP operation gets from the top of that stack, to which it is applied. Numbers in the output file should appear according to the order of the POP operations in the input file. Each number should be output in a separate line.

3. Sample Input

timus1220 (2008-02-23 15:35:43由localhost编辑)

ch3n2k.com | Copyright (c) 2004-2020 czk.