← Back to List

15680번: 연세대학교 ↗

Solutions

C++14
140 B | 140 chars
#include <iostream>
using namespace std;
int N;
int main()
{
	cin>>N;
	if(!N) cout<<"YONSEI";
	else cout<<"Leading the Way to the Future";
}