3047: 最小值
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:6
Solved:5
Description
输入n个数,输出其中最小的数。
Input
第一行输入一个正整数n (n<100)
第二行输入n个数,每个数都在int范围之内
Output
输出最小的数
Sample Input Copy
5
1 2 3 4 5
Sample Output Copy
1