package New;
import java.util.HashMap;
import java.util.Set;
public class Prog3 {
static
Integer op = 0;
public
static void abc(HashMap<Integer, String> m) {
Set<Integer>
s = m.keySet();
for
(Integer i : s) {
if
(i % 4 != 0)
op++;
}
}
public
static void main(String[] args) {
HashMap<Integer,
String> m = new HashMap<Integer, String>();
m.put(2,
"hi");
m.put(8,
"Hello");
m.put(12,
"Welcome");
abc(m);
System.out.println(op);
}
}