using System;
using System.Collections.Generic;
public class Example
{
public static void Main(string[] args) {
List<int> list = new List<int>() {
5, 3, 6, 7, 1, 9, 8
};
list.Sort();
Console.WriteLine(list[0]);
Console.WriteLine(list[1]);
}
}
/*
run:
1
3
*/