Problem5470--平均分

5470: 平均分

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

输入 $n$ 个学生的成绩,输出 $n$ 个学生的平均分数。

Input

两行。
第一行:整数 $n$,表示学生人数。
第二行:$n$ 个正整数,表示学生的分数。

Output

$n$ 个学生的平均分(保留到小数点后 $1$ 位)。

Constraints

$100\%$ 数据 $1 \leq n \leq 100,\ 0 \leq \text{分数} \leq 100$。

Sample 1 Input

3
60 61 62

Sample 1 Output

61.0

Source/Category