Программа работает, но результат не принимается
package com.javarush.task.task08.task0829;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
/*
Модернизация ПО
*/
public class Solution {
public static void main(String[] args) throws IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
Map<String, String> map = new HashMap<>();
while (true) {
String city = reader.readLine();
if (city.isEmpty()) break;
String family = reader.readLine();
if (family.isEmpty()) break;
map.put(city, family);
}
String town = reader.readLine();
for (Map.Entry<String, String> pair : map.entrySet()) {
String key = pair.getKey();
String value = pair.getValue();
if (value.equals(town)) {
System.out.println(key);
}
}
}
}