Run ID:107980

提交时间:2025-01-19 10:21:05

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