Drop links or images here to add them to the editor.

Complete Statistics ⭐⭐

Read a list of $N$ integers and store them in an array. Then, process the data to calculate and display the following metrics:

  1. Sum: Total sum of all numbers.
  2. Average: Arithmetic mean (formatted to one decimal place).
  3. Maximum: The highest value found.
  4. Minimum: The lowest value found.
  5. Evens: Count of how many numbers are even.

Input

An integer $N$, followed by $N$ integers (one per line or separated by spaces).

Output

A single line with the results in the following format: Suma:[v] Prom:[v] Mayor:[v] Menor:[v] Pares:[v]

Example

Input: 5 3 8 1 6 4

Output: Suma:22 Prom:4.4 Mayor:8 Menor:1 Pares:3