Что не так?
package com.javarush.task.task08.task0828;
import java.io.IOException;
import java.util.*;
import java.io.*;
import java.util.Map;
import java.util.HashMap;
/*
Номер месяца
*/
public class Solution {
public static void main(String[] args) throws IOException {
Map<String, Integer> map = new HashMap<String, Integer>();
map.put("January" ,1);
map.put("February",2);
map.put("March",3);
map.put("April",4);
map.put("May",5);
map.put("June",6);
map.put("July",7);
map.put("August ",8);
map.put("September",9);
map.put("October",10);
map.put("November", 11);
map.put("December",12);
//for(Map.Entry<String, Integer> pair : map.entrySet()){
// String key = pair.getKey();
// int value = pair.getValue();
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
String month = reader.readLine();
if(map.containsKey(month)){
// String v = Integer.toString(value);
// String data = key + " is the " + v + " month";
System.out.println(month +" is the "+map.get(month)+" month");
}
// }
}
}