본문 바로가기
알고리즘/백준

[Python] 백준 10817번 - 세 수

by 소꿍 2020. 6. 9.

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

 

10817번: 세 수

첫째 줄에 세 정수 A, B, C가 공백으로 구분되어 주어진다. (1 ≤ A, B, C ≤ 100)

www.acmicpc.net

 

num = list(map(int, input().split()))
num.sort()
print(num[1])

댓글