What's wrong?
package pl.codegym.task.task10.task1019;
import java.io.*;
import java.util.HashMap;
/*
Funkcjonalność to nie wszystko!
*/
public class Solution {
public static void main(String[] args) throws IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
HashMap<String, Integer> mapa = new HashMap<>();
while (true){
int id = Integer.parseInt(reader.readLine());
String imie = reader.readLine();
String n ="";
if(imie.equals(n)){
mapa.put("", id);
break;
}
mapa.put(imie, id);
}
for(HashMap.Entry<String, Integer> para : mapa.entrySet()){
String klucz = para.getKey();
int wartosc = para.getValue();
System.out.println(klucz + " " + wartosc);
}
}
}