Run ID:94213
提交时间:2024-10-20 09:15:52
a=int(input()) s=1 for x in range(2,a): if a%x==0: s=0 break if s==0: print("no prime") else: print("prime")