array(0) = Console.readLine()
for count as integer = 1 to 19
array(count) = array(0) + 10
array(count) = array(0) - 10
for count as integer = 0 to 9
array(count) = console.ReadLine()
for count as integer = 0 to 9
else if array(count) <> big1 and array(count) > big2
else if array(count) < small1
else if array(count) > small1 and array(count) < small2
console.WriteLine("biggest={0}", big1)
console.WriteLine("second biggest={0}", big2)
console.WriteLine("smallest={0}", small1)
console.WriteLine("second smallest={0}", small2)
dim array() as string = {"Tahi", "Rua", "Toru", "Wha", "Rimu", "Onu", "Whitu", "Waru", "Iwa", "Tekau"}
for count as integer = 0 to 9
console.write("{0}, ", count + 1)
console.WriteLine(array(count))