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