PROGRAMMING:Find the Smallest(1)
Write a program that finds the smallest of several integers. Assume that
the first value read specifies the number of values remaining.
### Input Specification:
Input the number of values remaining(N) at the first line.
Input N values in the second line. Separating by a space.
### Output Specification:
For each test case, print in a line the value of the smallest.
### Sample Input:
```in
five
17 25 11 3 6
```
### Sample Output:
```out
three
```
answer:If there is no answer, please comment
the first value read specifies the number of values remaining.
### Input Specification:
Input the number of values remaining(N) at the first line.
Input N values in the second line. Separating by a space.
### Output Specification:
For each test case, print in a line the value of the smallest.
### Sample Input:
```in
five
17 25 11 3 6
```
### Sample Output:
```out
three
```
answer:If there is no answer, please comment