import java.util.*;
public class MyClass {
public static void main(String args[]) {
ArrayList<Integer> al = new ArrayList<Integer>(Arrays.asList(5, 2, 9, 7, 5, 1));
int index = al.lastIndexOf(5);
System.out.println(index);
index = al.lastIndexOf(36);
System.out.println(index);
}
}
/*
run:
4
-1
*/