Minimum in the Queue
The input to a program is a set of operations with the queue. Each operation is either addition or removal of an item to or from the queue. After each operation find the smallest among all the numbers in a queue. Add up all the resulting numbers and get an answer. If after any operation the queue is empty, then add nothing to the answer. If it is impossible to remove an item because the queue is empty, then do nothing.
Input
The input data will be generated in your program. You will be given some parameters to get the input sequence.
The first input number is the number of operations with the queue. Then four nonnegative integers are given. Their values are not greater than .
Let's generate the input sequence .
The first number of input sequence is . The first and each next number can be evaluated from the previous number using the formula:
where "/" is an integer division, "mod" is the remainder from division.
If , you must delete the number from the queue, otherwise add number to the queue.
Output
Print the resulting sum.