[백준] 15680번 : 연세대학교 - C#

강재원·2022년 9월 9일
0

[코딩테스트] C#

목록 보기
25/200



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");
    }
}
profile
개념정리 & 문법 정리 & 알고리즘 공부

0개의 댓글