PROGRAMMING:Find the minimum
This problem requires programming to find out the minimum value of a given series of integers.
###Input format:
The input first gives a positive integer $$n $$on a line, followed by $$n $$integers separated by spaces.
###Output format:
Output the minimum value of $$n $$integers in the format of "Min = minimum" in one line.
###Input example:
```in
4 -2 -123 100 0
```
###Output example:
```out
min = -123
```
answer:If there is no answer, please comment
###Input format:
The input first gives a positive integer $$n $$on a line, followed by $$n $$integers separated by spaces.
###Output format:
Output the minimum value of $$n $$integers in the format of "Min = minimum" in one line.
###Input example:
```in
4 -2 -123 100 0
```
###Output example:
```out
min = -123
```
answer:If there is no answer, please comment