import java.util.*; /** A simple test program * Displays the result of a simple computation, * a welcome message, * and today's date. * @author J Lynch */ public class simpleTest { public static void main(String[] args) { int k = 24; int n = -19; System.out.println("The initial value of n is " + n); n += k; System.out.println("The new value of n is " + n); System.out.println("Welcome to the ITL. Today is " + new Date()); } }