PROGRAMMING:Sequence characteristics
Problem description
Given n numbers, find out the maximum, minimum, and.
###Input format:
The first line is integer n, which represents the number of numbers.
There are n numbers in the second line, which are given n numbers, and the absolute value of each number is less than 10000.
###Output format:
Output three lines, one integer for each line. The first row represents the maximum of these numbers, the second row represents the minimum of these numbers, and the third row represents the sum of these numbers.
###Input example:
Here is a set of inputs. For example:
```in
five
1 3 -2 4 5
```
###Output example:
The corresponding output is given here. For example:
```out
five
-2
eleven
```
answer:If there is no answer, please comment
Given n numbers, find out the maximum, minimum, and.
###Input format:
The first line is integer n, which represents the number of numbers.
There are n numbers in the second line, which are given n numbers, and the absolute value of each number is less than 10000.
###Output format:
Output three lines, one integer for each line. The first row represents the maximum of these numbers, the second row represents the minimum of these numbers, and the third row represents the sum of these numbers.
###Input example:
Here is a set of inputs. For example:
```in
five
1 3 -2 4 5
```
###Output example:
The corresponding output is given here. For example:
```out
five
-2
eleven
```
answer:If there is no answer, please comment