public class Main { public static void main(String[] args) { var ion=new Student(13,"Ion Testescu","1056",2); ion.add(new Nota("Programare Java",5)); ion.add(new Nota("SDD",9)); ion.add(new Nota("PAW",10)); System.out.println(ion); } }