public class StudentsMain {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("___________________________________________________\n");
Sports sport = new Sports("Gota 2", "Video game", 2);
Sports sport1 = new Sports("Black Myth Wukong", "Video Game", 1);
Students std = new Students("Cyber", 101, new MyDate(12, 02, 2022), new MyDate(07, 10, 2024), sport);
Students std1 = new Students("Naoe", 102, new MyDate(01, 01, 2020), new MyDate(06, 07, 2030), sport1);
System.out.println(std);
System.out.println("___________________________________________________\n");
System.out.println(std1);
System.out.println("___________________________________________________");
}
}