Agorithm/백준 알고리즘
백준 알고리즘 15680번 연세대학교(python)
kimjinho1
2021. 2. 7. 00:02
728x90
반응형
단순 출력 문제이다.
N = int(input())
if N == 1:
print("Leading the Way to the Future")
elif N == 0:
print("YONSEI")
N = int(input())
print("Leading the Way to the Future" if N == 1 else "YONSEI")
728x90
반응형