import java.util.Stack;
public class Solution {
Stack<Integer> stack1 = new Stack<Integer>();
Stack<Integer> stack2 = new Stack<Integer>();
public void push(int node) {
}
public int pop() {
}
public static void main(String[] args) {
//程序运行完成时一定要有输出语句,本工具才能正确展示运行结果。
System.out.println("Hello JSRUN! \n\n - from JAVA .");
}
}