728x90
반응형

단순 구현 문제이다.

S, K, H = map(int, input().split())
d = {S: "Soongsil", K: "Korea", H: "Hanyang"}
if sum(d) >= 100:
    print("OK")
else:
    print(d[min(d)])
728x90
반응형

+ Recent posts