본문 바로가기
Beakjoon&프로그래머스/Java

[백준/Java] 15680번 연세대학교

by 현장 2022. 4. 17.

-Code

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();

        if (n == 0) {
            System.out.println("YONSEI");
        } else {
            System.out.println("Leading the Way to the Future");
        }

    }
}