using System; using System.Diagnostics; namespace yukicoder { class Program { static void Main(string[] args) { //文字入力 string S = Console.ReadLine(); string[] s = new string[S.Length]; //比較用配列 string[] a = { "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z" }; //表示用 string[] n = new string[S.Length]; int[] v = new int[S.Length]; //入力した文字列の一部分を取得 for (int i=0;i