import java.util.*; class Program5 { public static void main(String[] argv) { List tomb = new Vector(); tomb.add("eper"); tomb.add("málna"); tomb.add("barack"); System.out.println(tomb.get(1)); } }