본문 바로가기
백준 문제풀이

baekjoon - python - 15680

by winston1214 2020. 9. 14.
반응형

www.acmicpc.net/problem/15680

 

15680번: 연세대학교

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

www.acmicpc.net

# @Author YoungMinKim
# baekjoon
N=int(input())
if N == 0:
    print('YONSEI')
else:
    print('Leading the Way to the Future')

 

반응형

'백준 문제풀이' 카테고리의 다른 글

baekjoon - python - 15894  (0) 2020.09.14
baekjoon - python - 15890  (0) 2020.09.14
baekjoon - python - 15596  (0) 2020.09.14
baekjoon - python - 15552  (0) 2020.09.14
baekjoon - python - 14918  (0) 2020.09.14

댓글