Run ID:93701

提交时间:2024-10-19 09:15:47

n=int(input()) for i in range(2,n-1): if n%i==0: print("not prime") break else: print("prime")