题解 | #公务员面试#
公务员面试
http://www.nowcoder.com/practice/f3a134908d5b41869f14f58307008a97
while 1:
try:
lis = list(map(int, input().split()))
ave = float((sum(lis)-max(lis)-min(lis))/5)
print(f'{ave:.2f}')
except:
break

