Олимпиадный тренинг

Задача 23378. Smallest number


Задача

Темы:
Given a sequence of numbers. Find the smallest number in it.
 
Input data.
Given first the number N (the number of numbers in the sequence), and then
N numbers. All numbers are from the Integer range. N<=100
 
Output.
Print the smallest number.
 
Sample input file
7
4 2 5 -1 4 6 2
 
Sample Output
-1