下面Python代码执行后其输出是:
for i in range(1, 12): for j in range(1, i): if i * j % 2 == 1: break else: print(i * j)
110
22
11
没有输出