/* Here is given a phone book that consists of people's names and their phone number. After that I will take some person's name as query. For each query I print the phone number of that person. */ import java.util.*; import java.io.*; class Solution{ public static void main(String []argh) { Scanner in = new Scanner(System.in); int n=in.nextInt(); in.nextLine(); Map m=new HashMap(); for(int i=0;i