Eddy is looking for a tree to buy for the holidays, but he knows that a lot of the
tree suppliers near him are trying to scam him for his money. As such, he forced Max to find the price of the cheapest tree. Max has compiled a list of all
prices, which are integers from
to
inclusive, but he's too tired to find the cheapest tree and instead forces this task onto you. Don't let him down!
Constraints

Input Specification
The first line contains a single integer
.
The second line contains
space-separated integers from 1 to 100, the list of prices.
Output Specification
Output a single integer, the minimum price in the list.
Sample Input
Copy
5
4 3 7 1 100
Sample Output
Copy
1
Comments