import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int countA = 0,countB = 0,countC = 0,countD = 0,countE = 0,countWrong = 0,countPrivate = 0; while (sc.hasNextLine()){ String str = sc.nextLine(); //双回车退出hasNextLine; if("".equals(str...