10817 썸네일형 리스트형 파이썬: 백준 문제 풀이 10817번 세 수 a,b,c = map(int,input().split())if a>b: temp = a el = belse: temp = b el = a if c>temp: print(temp)else: if c>el: print(c) else: print(el) 더보기 이전 1 다음