Run ID:93730

提交时间:2024-10-19 10:46:02

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