Hi there! I was reading about 7th lesson of second level(keyboard input).But actually its like to fall into the ocean immidiately.There's no lesson that I can match the informations with each other.the topic talks about keyboard input but the examples including bufferedreader inputstream and etc.Don't even know where to start to get it.Bcause the lecture is about to make objects and reading data from files,creating buffered thing but have no idea how to complete the task without knowing all these things.Can you guys tell me a way to understand all these things?What should I know for understanding those? Пример 1 Ввод строки и числа с клавиатуры InputStream inputStream = System.in; Reader inputStreamReader = new InputStreamReader(inputStream); BufferedReader bufferedReader = new BufferedReader(inputStreamReader); String name = bufferedReader.readLine(); //Read a string from the keyboard String sAge = bufferedReader.readLine(); //Read a string from the keyboard int nAge = Integer.parseInt(sAge); //Convert the string to a number.