class Program { static void Main(string[] args) { int total = int.Parse(Console.ReadLine()!); for (int i = 0; i < total; i++) { Console.Write("Long"); } Console.WriteLine(); } }