有如下Python程序段:
for i in range(1,11): for j in range(1,11,2): if i+j!=10: break print(i,j)
执行程序后,输出的结果为?
3 7
5 5
7 3
9 1