import java.util.*; class ListNode { int val; ListNode next; public ListNode(int val) { this.val = val; } public ListNode(ListNode next) { this.next = next; } public ListNode(int val, ListNode next) { this.val = val; this.next = next; ...