// Arup Guha
// 7/7 03
// My first java program

public class Hello {

	// Prints out a greeting.
	public static void main(String[] args) {

		System.out.println("Hello (Insert Your Name Here)!");
	}
}
