Run ID:116465
提交时间:2025-04-11 21:01:10
a=[] i=2 for i in range(100,201): j=2 for j in range(2,i): if i%j==0: break else: a.append(i) print(a)