using System.Collections.Generic;
using System;
public class MainClass {
public static void Main() {
List presidents = new List { "AAAA", "BBBBBB", "CCCCCCCC" };
foreach (string president in presidents) {
Console.WriteLine(president);
}
}
}