15680. 연세대학교

py_code·2020년 11월 18일
0

백준-브론즈4

목록 보기
27/51

solution 1 : print 내부 조건문

N = int(input())
print('YONSEI' if N==0 else 'Leading the Way to the Future')

solution 2 : 기본방법

N = int(input())
if N==0:
    print('YONSEI')
else:
    print('Leading the Way to the Future')
profile
개발자를 꿈꿉니다.

0개의 댓글