using System; namespace yukicoder { class Program { static void Main(string[] args) { var S = Console.ReadLine(); string s = "yukicoder"; for(int i = 0; i < 9; i++) { if(S.Substring(i , 1) == s.Substring(i , 1)) { continue; } else if (!(S.Substring(i, 1) == s.Substring(i, 1))) { Console.WriteLine(s[i]); } } } } }