Answer:
The sequence of natural numbers is a_1, a_2, a_3, ..., a_n.
Use min as the variable that will contain the minimum value.
Set min = a_1
In a loop, compare min to each number from a_2 to an.
If min > a_i, then let min = a_i
min = a_1
for i = 2 to n
if min > a_i, then min = a_i