运行以下程序,不会出现哪些结果( )?
lst1=[1,3,5,7,8]
lst2=[2,2,7,9,7]
for i in lst1:
for j in lst2:
if i+j ==10:
pass
print(i,j)
3、7
7、7
1、8
2、3