// $Id$

// Name: Gary T. Leavens
// Section: all

public class Square {

    public static long square(long x) {
	return x * x;
    }

    public static void main(String argv[]) {
	System.out.println("20 * 20 = " +
			   square(20));
    }
}
