import math
array = [0] * 5
for i in range(5):
array[i] = int(input())
array.sort()
print(math.floor(sum(array)/5))
print(array[2])
'Algorithm 💡 > Sorting' 카테고리의 다른 글
[백준 2108번] 통계학 (0) | 2023.02.24 |
---|---|
[백준 25305번] 커트라인 (0) | 2023.02.24 |
[백준 18870번] 좌표 압축 (0) | 2023.02.23 |
[백준 1764번] 듣보잡 ( + input과 sys.stdin.readline의 차이점) (0) | 2023.02.23 |
[백준 2309번] 일곱 난쟁이 (0) | 2023.02.22 |