void main() { int i, j, m = 0, n = 0; for (i = 0; i<2; i++) for (j = 0; j<2; j++) if (j >= i) m = 1; n++; printf("%d \n", n); }