728x90
import sys
numbers, res = [], 0
for _ in range(5):
num = int(sys.stdin.readline())
res += num
numbers.append(num)
numbers.sort()
print(res // 5)
print(numbers[len(numbers)//2])
728x90
'[Coding Test] > [백준]' 카테고리의 다른 글
[백준] 25206 파이썬(python): 너의 평점은 (0) | 2023.09.26 |
---|---|
[백준] 1076 파이썬(python) : 저항 (0) | 2022.10.01 |
[백준] 2822 파이썬(python) : 점수 계산 (0) | 2022.09.29 |
[백준] 1934 파이썬(python) : 최소공배수 (0) | 2022.09.28 |
[백준] 1037 파이썬(python) : 약수 (0) | 2022.09.27 |