Run ID:144474

提交时间:2026-01-22 22:47:37

for x in range(100, 201): for y in range(2, x+1): if x % y == 0: break else: print(x)