static void Main() { foreach (string s in Console.ReadLine().Split(' ')) if (s.IndexOf('k') > -1) Console.Write(s + ' '); Console.ReadLine(); }