5 static readonly int a
= 5;
6 static readonly int b
= 6;
8 public static int Main (string[] args
) {
12 repeat
= Convert
.ToInt32 (args
[0]);
14 Console
.WriteLine ("Repeat = " + repeat
);
16 for (int i
= 0; i
< repeat
*3; i
++) {
17 for (int j
= 0; j
< 100000000; j
++) {
18 if ((a
!= 5) || (b
!= 6))