下面Python代码执行后,将输出5。( )
for i in range(1,5):
for j in range(i,5,i):
if i * j % 2 == 0:
cnt += 1
print(cnt)