public void iterateUsingLambda(Map<String, Integer> map) { map.forEach((k, v) -> System.out.println((k + ":" + v))); }