loopCount = 0 for i in range(10): for j in range(i): if i * j % 2: break loopCount += 1 print(loopCount)
25
16
10
9