2349: LQ1067 做统计

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

Description

输入 n 个正整数,以空格分隔。
依次输出其中的最大值、最小值以及平均值,以 逗号 分隔。

Input

第一行 一个整数n。
第二行 n 个正整数,以空格分隔。

Output

三个数,以逗号“ ,”分隔。

Sample Input Copy

10 
1 2 3 4 5 6 7 8 9 10

Sample Output Copy

10,1,5.5

HINT

编译器默认只忽略行末的空格和换行符,其他内容不忽略。