Run ID:144470
提交时间:2026-01-22 22:40:03
for x in range(100, 201): for y in range(2, x+1): if x % y == 0: break else: print(x)