public class MethodBenchmark extends Benchmark {
    
    public void benchmark() {
    }
    
    public static void main(String[] args) {
	int count = Integer.parseInt(args [0]);
	
	long time = new MethodBenchmark().repeat(count);
	System.out.println(count + " methods in " + time + " milliseconds.");
    }
}
