using System; namespace Baekjoon { internal class Program { static void Main(string[] args) { //입력값 받아오는 동시에 모두 대문자로 바꿈 string input = Console.ReadLine().ToUpper(); //어느 알파벳이 제일 많이 나왔는지 확인할 용도의 변수 int max = 0; //결과값 담을 변수 string result = ""; //아스키코드 A~Z(65~90)를 이용 int[] asciiBox = new int[91]; //중복글자 나올때마다 asciiBox배열에 숫자 1씩 더함 for (int i = 0; i < input.Length; i++) { //만약input[i]가 A라면 asciiBox[A..