public void Test5() throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String string=br.readLine(); br.close(); for(int i=0;i<string.length();i++) { System.out.print(string.charAt(i)); if(i%8==7) { System.out.println(); } } if(string.length()%8!=0) { fo...