Run ID:116476
提交时间:2025-04-12 09:31:40
x=100 while x<201: a=True for j in range (2,x): if x%j==0: a=False break if a==True: print(x) x=x+1