This is probably very basic stuff, but I am not too sure how I should ask questions because I am very new to this, so here goes.
I am practicing vectors and what we can do to them. I have prompted the user for the elements of the vectors (per my directions) among other things successfully. For my next step, I have to "print out the element at index i in each of the two vectors." I was given the methods which I am supposed to use, but the explanations I saw of them were very unclear. Here they are:
Object get (int which)
Object remove (int which)
set (int index, object element)
How would I get the system output to be the element at the index i?
package vectorusage;
import java.util.*;
public class VectorUsage {
public static void main(String[] args) {
    Vector a = new Vector ();
    Vector b = new Vector ();
    System.out.println (a);
    System.out.println (b);
    Scanner input = new Scanner(System.in);
    String first;
    System.out.print("Please enter 4 strings.");
    first = input.next();
    a.add (first);
    String second;
    second = input.next();
    a.add (second);
    String third;
    third = input.next();
    a.add (third);
    String fourth;
    fourth = input.next();
    a.add (fourth);
    String fifth;
    System.out.print("Please enter 4 more strings.");
    fifth = input.next();
    b.add (fifth);
    String sixth;
    sixth = input.next();
    b.add (sixth);
    String seventh;
    seventh = input.next();
    b.add (seventh);
    String eighth;
    eighth = input.next();
    b.add (eighth);
    System.out.println("Vector a is size " + (a.size()) + " and contains: " + (a));
    System.out.println("Vector b is size " + (b.size()) + " and contains: " + (b));
    int i;
    System.out.println("Please enter an integer.");
    i = input.nextInt();
    System.out.println("Element at index " + i + " in Vector a is: " + ;
 
     
    