using System; class C { static void Main() => Console.WriteLine(Solve()); static object Solve() { return Console.ReadLine().ToLower(); } }