The minimum value of N numbers

Report a typo

Write a program that finds the minimum value of N numbers.

The first line contains the number N.
The other lines contain N numbers.

Output an integer number which is the minimum of N numbers.

Sample Input 1:

5
5
1
4
2
3

Sample Output 1:

1
Write a program in Kotlin
fun main() {
// write your code here
}
___

Create a free account to access the full topic