보안을 그리다, 훈이

[Baekjoon/Python3] 15680번 연세대학교 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 15680번 연세대학교

HooNeee 2020. 12. 8. 16:42

[Baekjoon/Python3] 15680번 연세대학교

 

www.acmicpc.net/problem/15680

 

15680번: 연세대학교

연세대학교의 영문명은 YONSEI, 슬로건은 Leading the Way to the Future이다. 이를 출력하는 프로그램을 작성해보도록 하자.

www.acmicpc.net

 

s = int(input())
if s == 0:
    print('YONSEI')
elif s == 1:
    print('Leading the Way to the Future')
Comments