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