Consider the following sequence of operations on an empty stack.
push(12); push(24); push(36); push(48); A=POP();
Consider the following sequence of operations on an empty queue.
enqueue(48); enqueue(36); enqueue(24); enqueue(12); B = dequeue()
The value of A + B is ______
1
48
2
72
3
96
4
84