import java.io.*; import java.util.*; import java.text.*; import java.math.*; import java.util.regex.*; public class Solution { static void printShortestPath(int n, int i_start, int j_start, int i_end, int j_end) { // Print the distance along with the sequence of moves. class Pair { int x,y; Pair prev,next; String move=""; public Pair(int x, int y, Pair prev, String move) { this.x=x; this.y=y; this.prev=prev; this.move=move; } } Queue points = new LinkedList<>(); boolean [][] col = new boolean [220][220]; Pair sol = null; for(int i=0; i<220; i++) for(int j=0; j<220; j++) if(i>9&i9&j