Python으로 구현한 15680번 연세대학교 문제 풀이입니다. https://www.acmicpc.net/problem/15680 15680번: 연세대학교 연세대학교의 영문명은 YONSEI, 슬로건은 Leading the Way to the Future이다. 이를 출력하는 프로그램을 작성해보도록 하자. www.acmicpc.net n = int(input()) if n == 0 : print('YONSEI') else : print('Leading the Way to the Future') 1. 입력받은 n이 0일 경우 연세대학교의 영문명을 출력한다. 2. 입력받은 n이 1일 경우 연세대학교의 슬로건을 출력한다.