//------------
// Introduction to Programming Using Java: An Object-Oriented Approach
//	Arnow/Weiss
//------------

//------------
// Chapter 1 / Section 1.1 / Page 2
//	A first, small Java program
//------------ 

//------------
// Notes
//	To compile, rename (or copy) the source file to Program1.java
//------------

import java.io.*;

class Program1 {
	public static void main(String arg[]) {
		System.out.println("Welcome To Java!");
	}
}
