// 22.5hv2 Software Engineering II // Unit 4 exercise 3 import java.io.*; public class ex3 { public static void main(String args[]) { Name doctor = new Name("Jos","Randall"); Date admission = new Date(14,2,2003); Person patient = new Person("Yvan","Petillot","male",15,03,1969); Patient me = new Patient(patient,admission,doctor); me.display(); } }