Run ID:96987

提交时间:2024-11-10 10:14:58

n=int(input("输入一个大于等于3的正整数")) for i in range(4,n): if n%i==0: print("not prime") break else: print("prime")