문제

링크

풀이

#include <stdio.h>
 
int main(void) {
  int n;
 
  scanf("%d", &n);
  if (n == 0) printf("YONSEI");
  else        printf("Leading the Way to the Future");
  return 0;
}