using System;
public class Program
{
public static void Main()
string s = "ChaMpiOn";
string s1 = s.ToLower();
Console.WriteLine(s1);
}