본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#27 백준 파이썬 [10817] 세 수

#27 백준[10817] 세 수

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




#Solution

a = list(map(int, input().split()))
b=sorted(a)
print(b[1])