11005: 歌唱比赛

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:1 Solved:0

Description

在歌唱比赛中,有10个评委为参赛的选手打分,分数为1~100分。选手最后得分为:去掉一个最高分和一个最低分后其余8个分数的平均值,保留2位小数。请编写一个程序实现。

Input

一行十个数,表示选手得分,选手得分可以用小数表示,比如80.5分。

Output

一行,选手平均分。

Sample Input Copy

10 20 30 40 50 60 70 80 90 100

Sample Output Copy

55.00

HINT