N = int(input()) print('YONSEI' if N==0 else 'Leading the Way to the Future')
N = int(input()) if N==0: print('YONSEI') else: print('Leading the Way to the Future')