import java.util.*;public class Main { public static void main(String[] args){ int index = 0; String structure; String input; Scanner sc = new Scanner(System.in); structure = sc.nextLine(); switch(structure){ case "Set": Set StrSet = new LinkedHashSet(); while(true){ input = sc.nextLine(); ..