코딩/공부

[Python] 백준 15680번 - 연세대학교

취미니스트 2024. 2. 1. 01:18
728x90
반응형

문제

https://www.acmicpc.net/problem/15680

 

정수 입력 후 1이면 슬로건, 0이면 학교명을 출력.

print('Leading the Way to the Future' if int(input()) else 'YONSEI')
728x90
반응형