Question: Write a complete program that creates two stacks with the following element: s1 = {10, 3, 1, 5} s2 = {7, 9, 2, 8, 12,

Write a complete program that creates two stacks with the following element: s1 = {10, 3, 1, 5} s2 = {7, 9, 2, 8, 12, 4} Use the pop method to extract the top element from each stack and print the summation of these two elements. Finally, print the remaining elements from both stacks, indicate if empty or show what is left in the stack. Sample output; 5 + 4 = 9 1 + 12 = 13 3 + 8 = 11 10 + 2 = 12 stack 1 is empty stack 2: [7, 9]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
