Saluton Kollegoj, I have created the program eg. and the system complains, however I get exactly the String it's requires: What is the problem with my code ? The systams tells: Checked the program displays only the required string and nothing else. ************************************************Begin of my code************************************************* BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in)); System.out.println("Hány éves vagy ? "); String nAge = bufferedReader.readLine(); System.out.println("Ki a fasznak hívnak ? "); String name = bufferedReader.readLine(); String number = nAge; System.out.print(name + " will take over the world in " + number + " years. Mwa-ha-ha!"); ************************************************End of my code*************************************************