Run ID:142201

提交时间:2026-01-01 16:41:11

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