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
반응형

+ Recent posts