int loopCount = 0; for (int i = 0; i < 10; i++) { for (int j = 0; j < i; j++) if (i * j % 2) break; loopCount += 1; } cout << loopCount;
25
16
10
9