← Back to List

17388번: 와글와글 숭고한 ↗

Solutions

Python 3
135 B | 135 chars
D=["Soongsil","Korea","Hanyang"]
L=list(map(int,input().split()))
if sum(L) >= 100:
    print("OK")
else:
    print(D[L.index(min(L))])