5 public static int test (int n
) {
12 public static int Main (string[] args
) {
17 repeat
= Convert
.ToInt32 (args
[0]);
19 Console
.WriteLine ("Repeat = " + repeat
);
21 for (int i
= 0; i
< repeat
; i
++)
22 for (int j
= 0; j
< 50000000; j
++)
26 Console
.WriteLine (sum
);
27 if (sum
!= (75000000 * repeat
))