//ITEC 120 Basic program template by Dr. Ray //Java is a complicated language that makes it impossible to start with just the basics. //You will have to use this template without fully understanding all of its different parts. //By the time the semester is overwith, you will understand everything in this file. import java.util.*; //You will save your program as filename.java //Replace template with filename or it will not compile public class template { public static void main(String[] args) { //Insert your code below this comment //Do not insert any code after this comment } }