#D13267. Min
Min
Min
Write a program which reads a sequence of integers , and prints the minimum value, maximum value and sum of the sequence.
Constraints
Input
In the first line, an integer is given. In the next line, integers are given in a line.
Output
Print the minimum value, maximum value and sum in a line. Put a single space between the values.
Example
Input
5 10 1 5 4 17
Output
1 17 37
inputFormat
Input
In the first line, an integer is given. In the next line, integers are given in a line.
outputFormat
Output
Print the minimum value, maximum value and sum in a line. Put a single space between the values.
Example
Input
5 10 1 5 4 17
Output
1 17 37
样例
5
10 1 5 4 17
1 17 37