import java.util.Scanner; import java.util.Stack; public class Main { public static void main(String[] args) { Scanner s = new Scanner(System.in); int n = s.nextInt(); s.nextLine(); Stack<Integer> stack = new Stack<>(); for (int i = 0; i < ...