The data file contains a sequence of numbers of up to 10 elements.
Find the minimum and maximum of the sequence.
Note that the array size is not specified!
example :
sequence : 5 2 3 4
answer : min = 2 ; max = 5
another example :
sequence : 5 2 6 8 4 2 1 5
answer : min = 1 ; max = 8