Run ID:128167

提交时间:2025-08-05 04:55:28

for i in range(100,201): s = 0 for m in range(1,i+1): if i%m == 0: s+=1 if s!=2: print(i)