[백준] 17388번 : 와글와글 숭고한 - Python(파이썬)

강재원·2022년 9월 16일
0

[코딩테스트] Python

목록 보기
39/200



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

a,b,c=map(int,input().split())
sum=a+b+c
if sum>=100: print("OK")
else:
    mi=min(a,min(b,c))
    if mi==a: print("Soongsil")
    elif mi==b: print("Korea")
    else: print("Hanyang")
profile
개념정리 & 문법 정리 & 알고리즘 공부

0개의 댓글