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
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 15726번 이칙연산(python) (0) | 2021.02.07 |
---|---|
백준 알고리즘 15700번 타일 채우기 4(python) (0) | 2021.02.07 |
백준 알고리즘 15610번 Abbey Courtyard(python) (0) | 2021.02.07 |
백준 알고리즘 15474번 鉛筆(python) (0) | 2021.02.07 |
백준 알고리즘 15236번 Dominos(python) (0) | 2021.02.07 |