import java.io.BufferedReader; import java.io.InputStreamReader; class DotLeaders { public static void main(String[] args) throws java.io.IOException { int dotnum; BufferedReader word1I = new BufferedReader(new InputStreamReader(System.in)); BufferedReader word2I = new BufferedReader(new InputStreamReader(System.in)); System.out.println("first Word"); String word = word1I.readLine(); System.out.println("second word"); String word2 = word2I.readLine(); dotnum = 30-(word.length()+word2.length()); System.out.print(word); for(dotnum=dotnum;dotnum>0; dotnum--){ System.out.print("."); } System.out.print(word2); } } //By msglm; Licensed under the AGPL v3