public class Solution4 { static List<LinkedList<Integer>> finalResult = new ArrayList<>(); static LinkedList<Integer> result = new LinkedList<>(); public static void main(String[] args) { Scanner scanner = new Scanner(System.in); String[] tm...