/**
 *
 * @author Ramana Isukapalli

 * A simple example to show how to create your own
 * class in Java.
 */
public class myClass {

    int square (int x)
    {
        return (x*x);
    }

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // TODO code application logic here
        myClass myClassObj = new myClass();
        int squareOf_5 = myClassObj.square(5);
        System.out.println ("square of 5 is: " + squareOf_5);
    }

}
