import java.util.Arrays; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int aCount = 0, bCount = 0, cCount = 0, dCount = 0, eCount = 0, errorCount = 0, privateCount = 0; while (scanner.hasNextLine()) { String s = scanner.nextLine(); try { Strin...