Run ID:96982
提交时间:2024-11-10 10:12:03
n=int(input()) for i in range(3,n): if n%i==0: print("not prime") break else: print("prime")