Run ID:132374

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

def prime(n): for i in range(101,199): print(i) if n % i == 0: break else: print(n)