Run ID:74601

提交时间:2024-05-25 16:27:33

a=[2,4,6,8] s=0 for x in a: for y in a: for z in a: if x!=y and x!=z and y!=z: s+=1 print(100*x+10*y+z) print(s)