Read a list of $N$ integers and store them in an array. Then, process the data to calculate and display the following metrics:
An integer $N$, followed by $N$ integers (one per line or separated by spaces).
A single line with the results in the following format:
Suma:[v] Prom:[v] Mayor:[v] Menor:[v] Pares:[v]
Input:
5 3 8 1 6 4
Output:
Suma:22 Prom:4.4 Mayor:8 Menor:1 Pares:3