본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 4974번 ICPC Score Totalizer Software

by 현장 2024. 10. 16.

-Code

while True:
    n = int(input())

    if n == 0:
        break

    score = sorted([int(input()) for _ in range(n)])[1:-1]
    print(sum(score) // len(score))