// 22.5HV2 Software Engineering II // Unit 4 Exercise 2 // Uninteresting driver program to test Person and Name classes import java.io.*; public class ex2 { public static void main(String args[]) { Person me = new Person("Yvan","Petillot","male",15,03,1969); me.display(); } }