using System; public class Hello { static void Main() { var s = Console.ReadLine().Trim(); Console.WriteLine(s.Replace("ao", "ki")); } }