cnt = 0 for i in range(1, 13, 3): for j in range(1, i, 2): if i * j % 2 == 0: break else: cnt += 1 else: print(cnt)
1
3
15
没有输出