// Read an integer from the command line, for example
// java CommandLine 123

public class CommandLine {
    public static void main (String[] arg) {
	int x = Integer.parseInt(arg[0]);
	System.out.println("The square of "+x+" is "+x*x);
    }
}