int loopCount = 0; for (int i=0; i < 10; i++) for (int j=1; j < i; j++) loopCount += 1; cout << loopCount;
55
45
36
28