using C=System.Console;class G{static void Main(){foreach(char c in C.ReadLine()){for(char d='A';d<=c;)C.Write(d++);C.WriteLine();}}}