Run ID:132378

提交时间:2025-10-08 09:37:51

n = 0 for i in range(100,200): for j in range(i): if i%j != 0: n+=1 if n==i-1: print(i)