import java.util.*; /* JAVA util != JAVA awt */ class Ideone{ public static void main (String[] args) throws java.lang.Exception { List<Estudante> lista = new ArrayList<>(); System.out.println("OK :D"); } class Estudante { private int numero; private String nome; public Estudante(int numero, String nome){ this.numero = numero; this.nome = nome; } }}