Run ID:93700
提交时间:2024-10-19 09:15:28
n=int(input()) for i in range(2,n-1): if n%i==0: print(" not prime") break else: print("prime")