Computer Science/백준 알고리즘
[백준] 10817 세 수 (파이썬)
roytravel
2022. 6. 17. 15:44
import sys
input = sys.stdin.readline
A = list(map(int, input().split()))
print (sorted(A)[1])