using System;
using System.Collections.Generic;
class Program
{
public static void PrintList(List<int> lst) {
foreach (int n in lst) {
Console.Write(n + " ");
}
}
static void Main() {
List<int> lst = new List<int>() { 3, 5, 6, 8 };
PrintList(lst);
lst.Add(1);
Console.WriteLine();
PrintList(lst);
}
}
/*
run:
3 5 6 8
3 5 6 8 1
*/