#874. 查找最小

查找最小

Description

已知有N个数,求出最小的数。

Format

Input

第一行仅一个数N,其中N(1<=N<=10000)为数的个数。 第二行有N个整数。

Output

仅一个数,即最小值。

Samples

5 
4 3 5 7 1
1

Limitation

1s, 1024KiB for each test case.