// point.java // Class to declare the point object public class point { public int x,y; // x is column ; y is row //Constructor public point() {x=y=0;} }