import java.lang.*;

// 1) Non-AWT. Displays no window
// 2) Template is just a name, can be anything. But static void main(String args[])
// MUST always be around.
// 3) Notice how there is NO instace of TemplateApp created? Yet it still runs
public class TemplateApp
{
	public static void main(String args[])
	{
		System.out.println("My first App");
	}
}


