import java.util.*;
class Main {
public static void main(String[] args) {
// Creating list using the Vector class
List<String> list = new Vector<>();
// Add elements to the list
list.add("Apple");
list.add("Mango");
list.add("Banana");
System.out.println("List: " + list);
// Access element from the list
String str = list.get(1);
System.out.println("Accessed Element: " + str+"
");
// Remove element from the list
String removedstr = list.remove(1);
System.out.println("Removed Element: " + removedstr);
}
}