[백준] 15680번 : 연세대학교 - Java(자바)

강재원·2022년 9월 9일
0

[코딩테스트] Java

목록 보기
25/200



https://www.acmicpc.net/problem/15680

import java.util.*;
public class Main {
    public static void main(String args[]) {
        Scanner s=new Scanner(System.in);
        int n=s.nextInt();
        if(n==0) System.out.print("YONSEI");
        else if(n==1) System.out.print("Leading the Way to the Future");
    }
}
profile
개념정리 & 문법 정리 & 알고리즘 공부

0개의 댓글