https://www.acmicpc.net/problem/15680
using System;
class Program
{
static void Main() {
string s=Console.ReadLine();
int n=int.Parse(s);
if(n==0) Console.Write("YONSEI");
else Console.Write("Leading the Way to the Future");
}
}