class Program { static void Main(string[] args) { string n = Console.ReadLine(); if (n != "ham") { n += "ham"; } Console.WriteLine(n); } }