Run ID:132384
提交时间:2025-10-08 09:39:09
def prime(n): for i in range(100,201): for a in range(2,n): if n % i == 0: break else: print(n)