Run ID:108356

提交时间:2025-01-20 10:15:12

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