https://www.acmicpc.net/problem/15680
#include <iostream> using namespace std; int main() { int n; cin >> n; if(n==0) cout<<"YONSEI"; else if(n==1) cout<<"Leading the Way to the Future"; }