// Student Name: Abraham Kim // School Name: Harmony School of Advancement // ACSL division: Intermediate 5 import java.io.*; import java.util.*; public class ACSL_Grid_Fit { public static void main(String[]args)throws IOException{ BufferedReader file=new BufferedReader(new FileReader("ACSL_Grid_Fit.in")); String[][]array={ {"21","22","23","24","25"}, {"16","17","18","19","20"}, {"11","12","13","14","15"}, {"6","7","8","9","10"}, {"1","2","3","4","5"} }; int[][]tArray={ {21,22,23,24,25}, {16,17,18,19,20}, {11,12,13,14,15}, {6,7,8,9,10}, {1,2,3,4,5} }; String temp=file.readLine(); String key=""; StringTokenizer st=new StringTokenizer(temp); st.nextToken(); int count=st.countTokens(); for(int x=0; x