[백준] 15680번 : 연세대학교 - Dart(다트)

강재원·2022년 9월 9일
0

[코딩테스트] Dart

목록 보기
25/100



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

import 'dart:io';
void main(){
    int? n=int.parse(stdin.readLineSync()!);
    if(n==0) print("YONSEI");
    else if(n==1) print("Leading the Way to the Future");
}
profile
개념정리 & 문법 정리 & 알고리즘 공부

0개의 댓글