import java.util.*; public class TestHashMap { public static void main(String[] args) { int n = Integer.parseInt(args[0]); // number of bits int m = Integer.parseInt(args[1]); // number of iterations Random gen = new Random(); Map M = new HashMap(); for (int iteration=0;iteration