There is a code
BufferedReader reader = null; try { reader = new BufferedReader( new InputStreamReader(new FileInputStream("input.txt"))); } catch (FileNotFoundException e1) { System.out.println("Файл не найден"); System.exit(0); }
Question: where should I put the file input.txt , so that it is considered correctly?