import java.util.Date; public class Main{ public static void main(String[] args){ System.out.println("hello..."); System.out.println("X: This is the java program .. "); System.out.println("Y: Output from java program .. "); System.out.println("Date " + new Date()); System.out.println("Added New file "); System.out.println("Added second file "); System.out.println("Added Third file "); System.out.println(" calling student... "); Student student = new Student(); student.sayHello();; System.out.println(" Good Buy Student... "); } }