// Simple console application to show results of calculations.
// * An application does not need an .html file because
//   it does not execute in a browser window.  
// * The class does not extend WindowController.
// * There is a 'main' method instead of a 'begin' method.
// * 'System.out.println' sends output to the console.
//   @author David Housman
//   @version 1-15-2003

public class Calculator
{
	public static void main(String[] args)
	{
		System.out.println(1000000 * 1000000);
	}
}
