Run ID:116464
提交时间:2025-04-11 20:58:23
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)