Smallest value - MarisaOJ: Marisa Online Judge

Smallest value

Time limit: 1000 ms
Memory limit: 256 MB
Given an array $A$ with $n$ integer elements, find the minimum value in the array. ### Input - The first line contains an integer $n$. - The second line contains $n$ integers $A_i$. ### Output - Print the minimum value in the array. ### Constraints - $1 \le n \le 1000$. - $1 \le A_i \le 1000$. ### Sample Input: ``` 5 1 2 1 5 3 ``` Output: ``` 1 ```