System.out.println("Point A, n=" + n);
If you want to leave print statements in your program while you develop it
further, you may want to add a global boolean variable debug and
change this to:
if (debug) System.out.println("Point A, n=" + n);