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 x1, int y1, int x2, int y2) { int count=0; String a[]=new String[n]; if(x1%2==0 && x2%2!=0){ System.out.println("Impossible"); } else if(x1%2!=0 && x2%2==0){ System.out.println("Impossible"); } else{ for(int j=0;j=y1){ x1=x1-2; y1=y1+1; a[count]="UR"; count++; } else if(x2==x1 && y2>y1){ y1=y1+2; a[count]="R"; count++; } else if(x2>x1 && y2>=y1){ x1=x1+2; y1=y1+1; a[count]="LR"; count++; } else if(x2>x1 && y2