///
O código abaixo irá compilar e retornar o número 70.
import java.util.*;
public class OutTeste {
public static void main(String[] args) {
List<Integer> list = new ArrayList<Integer>();
list.add(0, 70);
int total = list.get(1);
System.out.println(total);
}
}